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

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

There is a newer version: 2.1.88
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 GetSsoAccessTokenResponseBody extends TeaModel {
    /**
     * example:
     * 

1234

*/ @NameInMap("accessToken") public String accessToken; /** * example: *

3600

*/ @NameInMap("expireIn") public Long expireIn; public static GetSsoAccessTokenResponseBody build(java.util.Map map) throws Exception { GetSsoAccessTokenResponseBody self = new GetSsoAccessTokenResponseBody(); return TeaModel.build(map, self); } public GetSsoAccessTokenResponseBody setAccessToken(String accessToken) { this.accessToken = accessToken; return this; } public String getAccessToken() { return this.accessToken; } public GetSsoAccessTokenResponseBody setExpireIn(Long expireIn) { this.expireIn = expireIn; return this; } public Long getExpireIn() { return this.expireIn; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy