All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iqs20240712.models.RectangleTrafficStatusRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// 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