com.alipay.api.domain.AlipayInsDataAutodamageRequestImageInfo 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 车险图像定损请求中的图像信息
*
* @author auto create
* @since 1.0, 2017-07-28 15:30:17
*/
public class AlipayInsDataAutodamageRequestImageInfo extends AlipayObject {
private static final long serialVersionUID = 3546481162843536271L;
/**
* 图像文件名称
*/
@ApiField("image_name")
private String imageName;
/**
* 图像文件在存储上的路径
*/
@ApiField("image_path")
private String imagePath;
public String getImageName() {
return this.imageName;
}
public void setImageName(String imageName) {
this.imageName = imageName;
}
public String getImagePath() {
return this.imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy