Package odata.msgraph.client.complex
Class ScheduleInformation
- java.lang.Object
-
- odata.msgraph.client.complex.ScheduleInformation
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class ScheduleInformation extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScheduleInformation.Builder
-
Field Summary
Fields Modifier and Type Field Description protected StringavailabilityViewprotected com.github.davidmoten.odata.client.ContextPathcontextPathprotected FreeBusyErrorerrorprotected StringodataTypeprotected StringscheduleIdprotected List<ScheduleItem>scheduleItemsprotected StringscheduleItemsNextLinkprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFieldsprotected WorkingHoursworkingHours
-
Constructor Summary
Constructors Modifier Constructor Description protectedScheduleInformation()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScheduleInformation.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getAvailabilityView()Optional<FreeBusyError>getError()Optional<String>getScheduleId()com.github.davidmoten.odata.client.CollectionPage<ScheduleItem>getScheduleItems()com.github.davidmoten.odata.client.CollectionPage<ScheduleItem>getScheduleItems(com.github.davidmoten.odata.client.HttpRequestOptions options)com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()Optional<WorkingHours>getWorkingHours()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()ScheduleInformationwithAvailabilityView(String availabilityView)ScheduleInformationwithError(FreeBusyError error)ScheduleInformationwithScheduleId(String scheduleId)ScheduleInformationwithUnmappedField(String name, Object value)ScheduleInformationwithWorkingHours(WorkingHours workingHours)
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
availabilityView
protected String availabilityView
-
error
protected FreeBusyError error
-
scheduleId
protected String scheduleId
-
scheduleItems
protected List<ScheduleItem> scheduleItems
-
scheduleItemsNextLink
protected String scheduleItemsNextLink
-
workingHours
protected WorkingHours workingHours
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
withAvailabilityView
public ScheduleInformation withAvailabilityView(String availabilityView)
-
getError
public Optional<FreeBusyError> getError()
-
withError
public ScheduleInformation withError(FreeBusyError error)
-
withScheduleId
public ScheduleInformation withScheduleId(String scheduleId)
-
getScheduleItems
public com.github.davidmoten.odata.client.CollectionPage<ScheduleItem> getScheduleItems()
-
getScheduleItems
public com.github.davidmoten.odata.client.CollectionPage<ScheduleItem> getScheduleItems(com.github.davidmoten.odata.client.HttpRequestOptions options)
-
getWorkingHours
public Optional<WorkingHours> getWorkingHours()
-
withWorkingHours
public ScheduleInformation withWorkingHours(WorkingHours workingHours)
-
withUnmappedField
public ScheduleInformation withUnmappedField(String name, Object value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static ScheduleInformation.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-