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

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

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


/**
 * Information specified in request
 */
public class SpecificInfo {
    /**
     * Starting time for data collection
     * Format: date-time
     */
    public String timeFrom;
    /**
     * Ending time for data collection
     * Format: date-time
     */
    public String timeTo;
    /**
     *
     */
    public DataExportTaskContactInfo[] contacts;
    /**
     * List of chats from which the data (posts, files, tasks, events, notes, etc.) will be collected
     */
    public String[] chatIds;

    public SpecificInfo timeFrom(String timeFrom) {
        this.timeFrom = timeFrom;
        return this;
    }

    public SpecificInfo timeTo(String timeTo) {
        this.timeTo = timeTo;
        return this;
    }

    public SpecificInfo contacts(DataExportTaskContactInfo[] contacts) {
        this.contacts = contacts;
        return this;
    }

    public SpecificInfo chatIds(String[] chatIds) {
        this.chatIds = chatIds;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy