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

com.larksuite.oapi.service.drive.v1.model.ImportTask Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.drive.v1.model;
import com.google.gson.annotations.SerializedName;

public class ImportTask {
    @SerializedName("ticket")
    private String ticket;
    @SerializedName("file_extension")
    private String fileExtension;
    @SerializedName("file_token")
    private String fileToken;
    @SerializedName("type")
    private String type;
    @SerializedName("file_name")
    private String fileName;
    @SerializedName("point")
    private ImportTaskMountPoint point;
    @SerializedName("job_status")
    private Integer jobStatus;
    @SerializedName("job_error_msg")
    private String jobErrorMsg;
    @SerializedName("token")
    private String token;
    @SerializedName("url")
    private String url;
    @SerializedName("extra")
    private String[] extra;

    public String getTicket() {
        return this.ticket;
    }

    public void setTicket(String ticket) {
        this.ticket = ticket;
    }

    public String getFileExtension() {
        return this.fileExtension;
    }

    public void setFileExtension(String fileExtension) {
        this.fileExtension = fileExtension;
    }

    public String getFileToken() {
        return this.fileToken;
    }

    public void setFileToken(String fileToken) {
        this.fileToken = fileToken;
    }

    public String getType() {
        return this.type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getFileName() {
        return this.fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public ImportTaskMountPoint getPoint() {
        return this.point;
    }

    public void setPoint(ImportTaskMountPoint point) {
        this.point = point;
    }

    public Integer getJobStatus() {
        return this.jobStatus;
    }

    public void setJobStatus(Integer jobStatus) {
        this.jobStatus = jobStatus;
    }

    public String getJobErrorMsg() {
        return this.jobErrorMsg;
    }

    public void setJobErrorMsg(String jobErrorMsg) {
        this.jobErrorMsg = jobErrorMsg;
    }

    public String getToken() {
        return this.token;
    }

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

    public String getUrl() {
        return this.url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String[] getExtra() {
        return this.extra;
    }

    public void setExtra(String[] extra) {
        this.extra = extra;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy