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

cn.ucloud.usql.model.ListUSQLTokensResult Maven / Gradle / Ivy

There is a newer version: 0.8.4.4-release
Show newest version
package cn.ucloud.usql.model;

import cn.ucloud.common.pojo.BaseResponseResult;
import com.google.gson.annotations.SerializedName;

import java.util.List;


/**
 * @Description : 获取USQL相关授权列表 结果类
 * @Author : ucloud-sdk-generator
 * @Date : 2019-03-13 07:56
 **/
public class ListUSQLTokensResult extends BaseResponseResult {
    /**
     * API请求ID
     */
    @SerializedName("Request")
    private String request;
    /**
     * 授权令牌总数
     */
    @SerializedName("TotalCount")
    private Integer totalCount;
    /**
     * 授权令牌集合
     */
    @SerializedName("Tokens")
    private List tokens;


    public String getRequest() {
        return this.request;
    }

    public void setRequest(String request) {
        this.request = request;
    }

    public Integer getTotalCount() {
        return totalCount;
    }

    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }

    public List getTokens() {
        return this.tokens;
    }

    public void setTokens(List tokens) {
        this.tokens = tokens;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy