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

com.hiczp.bilibili.api.passport.entity.LogoutResponseEntity Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.hiczp.bilibili.api.passport.entity;

import com.google.gson.annotations.SerializedName;

public class LogoutResponseEntity extends ResponseEntity {
    /**
     * message : access_key not found.
     * ts : 1509555707
     * code : -901
     */

    @SerializedName("ts")
    private long timestamp;
    @SerializedName("code")
    private int code;

    public long getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(long timestamp) {
        this.timestamp = timestamp;
    }

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy