com.alipay.api.response.AlipayCloudCloudpromoImageGenfromtextApplyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.cloud.cloudpromo.image.genfromtext.apply response.
*
* @author auto create
* @since 1.0, 2023-12-13 16:06:54
*/
public class AlipayCloudCloudpromoImageGenfromtextApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 2558822797186732871L;
/**
* 支付宝内部订单id,唯一
*/
@ApiField("order_id")
private String orderId;
/**
* 外部业务号,原样返回商户请求号
*/
@ApiField("out_biz_id")
private String outBizId;
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId( ) {
return this.orderId;
}
public void setOutBizId(String outBizId) {
this.outBizId = outBizId;
}
public String getOutBizId( ) {
return this.outBizId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy