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

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

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


public class GetUserBusinessHoursResponse {
    /**
     * Canonical URI of a business-hours resource
     * Format: uri
     */
    public String uri;
    /**
     *
     */
    public ScheduleInfoUserBusinessHours schedule;

    public GetUserBusinessHoursResponse uri(String uri) {
        this.uri = uri;
        return this;
    }

    public GetUserBusinessHoursResponse schedule(ScheduleInfoUserBusinessHours schedule) {
        this.schedule = schedule;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy