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

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

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


public class SyncInfo {
    /**
     * Enum: FSync, ISync
     */
    public String syncType;
    /**
     *
     */
    public String syncToken;
    /**
     * Format: date-time
     */
    public String syncTime;
    /**
     *
     */
    public Boolean olderRecordsExist;

    public SyncInfo syncType(String syncType) {
        this.syncType = syncType;
        return this;
    }

    public SyncInfo syncToken(String syncToken) {
        this.syncToken = syncToken;
        return this;
    }

    public SyncInfo syncTime(String syncTime) {
        this.syncTime = syncTime;
        return this;
    }

    public SyncInfo olderRecordsExist(Boolean olderRecordsExist) {
        this.olderRecordsExist = olderRecordsExist;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy