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

com.aliyun.dingtalkresident_1_0.models.GetPropertyInfoResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkresident_1_0.models;

import com.aliyun.tea.*;

public class GetPropertyInfoResponseBody extends TeaModel {
    @NameInMap("adminName")
    public String adminName;

    @NameInMap("adminUserId")
    public String adminUserId;

    @NameInMap("name")
    public String name;

    @NameInMap("orgId")
    public Long orgId;

    @NameInMap("unifiedSocialCredit")
    public String unifiedSocialCredit;

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

    public GetPropertyInfoResponseBody setAdminName(String adminName) {
        this.adminName = adminName;
        return this;
    }
    public String getAdminName() {
        return this.adminName;
    }

    public GetPropertyInfoResponseBody setAdminUserId(String adminUserId) {
        this.adminUserId = adminUserId;
        return this;
    }
    public String getAdminUserId() {
        return this.adminUserId;
    }

    public GetPropertyInfoResponseBody setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public GetPropertyInfoResponseBody setOrgId(Long orgId) {
        this.orgId = orgId;
        return this;
    }
    public Long getOrgId() {
        return this.orgId;
    }

    public GetPropertyInfoResponseBody setUnifiedSocialCredit(String unifiedSocialCredit) {
        this.unifiedSocialCredit = unifiedSocialCredit;
        return this;
    }
    public String getUnifiedSocialCredit() {
        return this.unifiedSocialCredit;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy