com.aliyun.dingtalkoauth2_1_0.models.GetSsoAccessTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}