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

com.antgroup.antchain.openapi.demo.models.SCRealEstateQueryInvokerRequest Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;

import com.aliyun.tea.*;

public class SCRealEstateQueryInvokerRequest extends TeaModel {
    // header
    @NameInMap("header")
    @Validation(required = true)
    public Header header;

    // body
    @NameInMap("body")
    @Validation(required = true)
    public SCRealEstateQueryBody body;

    public static SCRealEstateQueryInvokerRequest build(java.util.Map map) throws Exception {
        SCRealEstateQueryInvokerRequest self = new SCRealEstateQueryInvokerRequest();
        return TeaModel.build(map, self);
    }

    public SCRealEstateQueryInvokerRequest setHeader(Header header) {
        this.header = header;
        return this;
    }
    public Header getHeader() {
        return this.header;
    }

    public SCRealEstateQueryInvokerRequest setBody(SCRealEstateQueryBody body) {
        this.body = body;
        return this;
    }
    public SCRealEstateQueryBody getBody() {
        return this.body;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy