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

com.aliyun.dingtalkoauth2_1_0.models.GetSsoAccessTokenRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetSsoAccessTokenRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

corpxxxx

*/ @NameInMap("corpid") public String corpid; /** *

This parameter is required.

* * example: *

xxxx

*/ @NameInMap("ssoSecret") public String ssoSecret; public static GetSsoAccessTokenRequest build(java.util.Map map) throws Exception { GetSsoAccessTokenRequest self = new GetSsoAccessTokenRequest(); return TeaModel.build(map, self); } public GetSsoAccessTokenRequest setCorpid(String corpid) { this.corpid = corpid; return this; } public String getCorpid() { return this.corpid; } public GetSsoAccessTokenRequest setSsoSecret(String ssoSecret) { this.ssoSecret = ssoSecret; return this; } public String getSsoSecret() { return this.ssoSecret; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy