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

com.aliyun.ccp.ccpclient.models.TokenRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

/**
 * 
 */
public class TokenRequest extends TeaModel {
    @NameInMap("app_id")
    @Validation(required = true)
    public String appId;

    @NameInMap("grant_type")
    @Validation(required = true)
    public String grantType;

    @NameInMap("refresh_token")
    @Validation(required = true)
    public String refreshToken;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy