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

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

There is a newer version: 1.1.8
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 SCRealEstateQueryRequestPayload extends TeaModel {
    // xm
    @NameInMap("xm")
    @Validation(required = true)
    public String xm;

    // sfz
    @NameInMap("sfz")
    @Validation(required = true)
    public String sfz;

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

    public SCRealEstateQueryRequestPayload setXm(String xm) {
        this.xm = xm;
        return this;
    }
    public String getXm() {
        return this.xm;
    }

    public SCRealEstateQueryRequestPayload setSfz(String sfz) {
        this.sfz = sfz;
        return this;
    }
    public String getSfz() {
        return this.sfz;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy