com.ringcentral.definitions.GetUserBusinessHoursResponse Maven / Gradle / Ivy
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