com.alipay.api.response.AntMerchantExpandImageUploadResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: ant.merchant.expand.image.upload response.
*
* @author auto create
* @since 1.0, 2016-07-28 23:35:31
*/
public class AntMerchantExpandImageUploadResponse extends AlipayResponse {
private static final long serialVersionUID = 8384836753949842369L;
/**
* 图片在sfs中的标识
*/
@ApiField("image_id")
private String imageId;
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImageId( ) {
return this.imageId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy