com.aliyun.iqs20240712.models.RectangleTrafficStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iqs20240712 Show documentation
Show all versions of iqs20240712 Show documentation
Alibaba Cloud IQS (20240712) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iqs20240712.models;
import com.aliyun.tea.*;
public class RectangleTrafficStatusRequest extends TeaModel {
/**
* example:
* 39.966309
*/
@NameInMap("lowerLeftLatitude")
public String lowerLeftLatitude;
/**
* example:
* 116.351147
*/
@NameInMap("lowerLeftLongitude")
public String lowerLeftLongitude;
/**
* example:
* HIGHWAY
*/
@NameInMap("roadLevel")
public String roadLevel;
/**
* example:
* 39.968739
*/
@NameInMap("upperRightLatitude")
public String upperRightLatitude;
/**
* example:
* 116.35164
*/
@NameInMap("upperRightLongitude")
public String upperRightLongitude;
public static RectangleTrafficStatusRequest build(java.util.Map map) throws Exception {
RectangleTrafficStatusRequest self = new RectangleTrafficStatusRequest();
return TeaModel.build(map, self);
}
public RectangleTrafficStatusRequest setLowerLeftLatitude(String lowerLeftLatitude) {
this.lowerLeftLatitude = lowerLeftLatitude;
return this;
}
public String getLowerLeftLatitude() {
return this.lowerLeftLatitude;
}
public RectangleTrafficStatusRequest setLowerLeftLongitude(String lowerLeftLongitude) {
this.lowerLeftLongitude = lowerLeftLongitude;
return this;
}
public String getLowerLeftLongitude() {
return this.lowerLeftLongitude;
}
public RectangleTrafficStatusRequest setRoadLevel(String roadLevel) {
this.roadLevel = roadLevel;
return this;
}
public String getRoadLevel() {
return this.roadLevel;
}
public RectangleTrafficStatusRequest setUpperRightLatitude(String upperRightLatitude) {
this.upperRightLatitude = upperRightLatitude;
return this;
}
public String getUpperRightLatitude() {
return this.upperRightLatitude;
}
public RectangleTrafficStatusRequest setUpperRightLongitude(String upperRightLongitude) {
this.upperRightLongitude = upperRightLongitude;
return this;
}
public String getUpperRightLongitude() {
return this.upperRightLongitude;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy