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

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

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


public class TimelineResponsePoint {
    /**
     * Time point in RFC 3339 format
     * Required
     * Format: date-time
     */
    public String time;
    /**
     *
     */
    public CallsTimers timers;
    /**
     *
     */
    public CallsCounters counters;

    public TimelineResponsePoint time(String time) {
        this.time = time;
        return this;
    }

    public TimelineResponsePoint timers(CallsTimers timers) {
        this.timers = timers;
        return this;
    }

    public TimelineResponsePoint counters(CallsCounters counters) {
        this.counters = counters;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy