com.antgroup.antchain.openapi.demo.models.SCRealEstateQueryResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class SCRealEstateQueryResponseBody extends TeaModel {
// cost
@NameInMap("cost")
@Validation(required = true)
public Long cost;
// response_status
@NameInMap("response_status")
@Validation(required = true)
public String responseStatus;
// response_code
@NameInMap("response_code")
@Validation(required = true)
public String responseCode;
// request_id
@NameInMap("request_id")
@Validation(required = true)
public String requestId;
// payload
@NameInMap("payload")
@Validation(required = true)
public SCRealEstateQueryResponsePayload payload;
public static SCRealEstateQueryResponseBody build(java.util.Map map) throws Exception {
SCRealEstateQueryResponseBody self = new SCRealEstateQueryResponseBody();
return TeaModel.build(map, self);
}
public SCRealEstateQueryResponseBody setCost(Long cost) {
this.cost = cost;
return this;
}
public Long getCost() {
return this.cost;
}
public SCRealEstateQueryResponseBody setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public SCRealEstateQueryResponseBody setResponseCode(String responseCode) {
this.responseCode = responseCode;
return this;
}
public String getResponseCode() {
return this.responseCode;
}
public SCRealEstateQueryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public SCRealEstateQueryResponseBody setPayload(SCRealEstateQueryResponsePayload payload) {
this.payload = payload;
return this;
}
public SCRealEstateQueryResponsePayload getPayload() {
return this.payload;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy