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

com.qiniu.linking.model.SaveasReply Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
package com.qiniu.linking.model;

import com.google.gson.annotations.SerializedName;

public class SaveasReply {
    @SerializedName("frame")
    private String frame;
    @SerializedName("persistentId")
    private String persistentId;
    @SerializedName("duration")
    private int duration;

    public String getFrame() {
        return frame;
    }

    public void setFrame(String frame) {
        this.frame = frame;
    }

    public String getPersistentId() {
        return persistentId;
    }

    public void setPersistentId(String persistentId) {
        this.persistentId = persistentId;
    }

    public int getDuration() {
        return duration;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy