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

com.aliyun.datahub.client.model.GetTokenResult Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.model;

import com.fasterxml.jackson.annotation.JsonProperty;

public class GetTokenResult extends BaseResult {
    @JsonProperty("Token")
    private String token;

    @JsonProperty("Duration")
    private long duration;

    public String getToken() { return token; }

    public void setToken(String token) { this.token = token; }

    public long getDuration() {
        return duration;
    }

    public void setDuration(long duration) {
        this.duration = duration;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy