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

com.aliyun.dingtalkstorage_1_0.models.RefreshWebOfficeTokenResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class RefreshWebOfficeTokenResponseBody extends TeaModel {
    @NameInMap("webOfficeAccessToken")
    public String webOfficeAccessToken;

    @NameInMap("webOfficeRefreshToken")
    public String webOfficeRefreshToken;

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

    public RefreshWebOfficeTokenResponseBody setWebOfficeAccessToken(String webOfficeAccessToken) {
        this.webOfficeAccessToken = webOfficeAccessToken;
        return this;
    }
    public String getWebOfficeAccessToken() {
        return this.webOfficeAccessToken;
    }

    public RefreshWebOfficeTokenResponseBody setWebOfficeRefreshToken(String webOfficeRefreshToken) {
        this.webOfficeRefreshToken = webOfficeRefreshToken;
        return this;
    }
    public String getWebOfficeRefreshToken() {
        return this.webOfficeRefreshToken;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy