com.alipay.api.domain.AlipayMsaasMediarecogAftsCarIdentifyModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 多媒体算法车减排识别
*
* @author auto create
* @since 1.0, 2022-10-18 11:24:49
*/
public class AlipayMsaasMediarecogAftsCarIdentifyModel extends AlipayObject {
private static final long serialVersionUID = 6212946827282849442L;
/**
* 扩展入参
*/
@ApiField("ext")
private String ext;
/**
* 高
*/
@ApiField("h")
private Long h;
/**
* 用户输入的里程数
*/
@ApiField("kilometres")
private Long kilometres;
/**
* 传入资源URL或djangoid或aftsid
*/
@ApiField("url")
private String url;
/**
* 蚂蚁统一会员ID
*/
@ApiField("user_id")
private String userId;
/**
* 宽
*/
@ApiField("w")
private Long w;
/**
* 引导框左上角x
*/
@ApiField("x")
private Long x;
/**
* 引导框左上角y
*/
@ApiField("y")
private Long y;
public String getExt() {
return this.ext;
}
public void setExt(String ext) {
this.ext = ext;
}
public Long getH() {
return this.h;
}
public void setH(Long h) {
this.h = h;
}
public Long getKilometres() {
return this.kilometres;
}
public void setKilometres(Long kilometres) {
this.kilometres = kilometres;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getW() {
return this.w;
}
public void setW(Long w) {
this.w = w;
}
public Long getX() {
return this.x;
}
public void setX(Long x) {
this.x = x;
}
public Long getY() {
return this.y;
}
public void setY(Long y) {
this.y = y;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy