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

com.aliyun.dingtalkyida_1_0.models.GetSaleUserInfoByUserIdRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class GetSaleUserInfoByUserIdRequest extends TeaModel {
    @NameInMap("corpId")
    public String corpId;

    @NameInMap("namespace")
    public String namespace;

    @NameInMap("userId")
    public String userId;

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

    public GetSaleUserInfoByUserIdRequest setCorpId(String corpId) {
        this.corpId = corpId;
        return this;
    }
    public String getCorpId() {
        return this.corpId;
    }

    public GetSaleUserInfoByUserIdRequest setNamespace(String namespace) {
        this.namespace = namespace;
        return this;
    }
    public String getNamespace() {
        return this.namespace;
    }

    public GetSaleUserInfoByUserIdRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy