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

com.ringcentral.definitions.DataExportTaskList Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class DataExportTaskList {
    /**
     *
     */
    public DataExportTask[] tasks;
    /**
     *
     */
    public GlipDataExportNavigationInfo navigation;
    /**
     *
     */
    public GlipDataExportPagingInfo paging;

    public DataExportTaskList tasks(DataExportTask[] tasks) {
        this.tasks = tasks;
        return this;
    }

    public DataExportTaskList navigation(GlipDataExportNavigationInfo navigation) {
        this.navigation = navigation;
        return this;
    }

    public DataExportTaskList paging(GlipDataExportPagingInfo paging) {
        this.paging = paging;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy