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

com.antgroup.antchain.openapi.acm.models.GetAntpassportTenantRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetAntpassportTenantRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    // 蚂蚁通行证uid
    @NameInMap("ant_uid")
    @Validation(required = true)
    public String antUid;

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

    public GetAntpassportTenantRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public GetAntpassportTenantRequest setAntUid(String antUid) {
        this.antUid = antUid;
        return this;
    }
    public String getAntUid() {
        return this.antUid;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy