Package odata.msgraph.client.complex
Class ScheduleItem
- java.lang.Object
-
- odata.msgraph.client.complex.ScheduleItem
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class ScheduleItem extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScheduleItem.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected DateTimeTimeZoneendprotected BooleanisPrivateprotected Stringlocationprotected StringodataTypeprotected DateTimeTimeZonestartprotected FreeBusyStatusstatusprotected Stringsubjectprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedScheduleItem()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScheduleItem.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<DateTimeTimeZone>getEnd()Optional<Boolean>getIsPrivate()Optional<String>getLocation()Optional<DateTimeTimeZone>getStart()Optional<FreeBusyStatus>getStatus()Optional<String>getSubject()com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()ScheduleItemwithEnd(DateTimeTimeZone end)ScheduleItemwithIsPrivate(Boolean isPrivate)ScheduleItemwithLocation(String location)ScheduleItemwithStart(DateTimeTimeZone start)ScheduleItemwithStatus(FreeBusyStatus status)ScheduleItemwithSubject(String subject)ScheduleItemwithUnmappedField(String name, String value)
-
-
-
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
-
end
protected DateTimeTimeZone end
-
isPrivate
protected Boolean isPrivate
-
location
protected String location
-
start
protected DateTimeTimeZone start
-
status
protected FreeBusyStatus status
-
subject
protected String subject
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getEnd
public Optional<DateTimeTimeZone> getEnd()
-
withEnd
public ScheduleItem withEnd(DateTimeTimeZone end)
-
withIsPrivate
public ScheduleItem withIsPrivate(Boolean isPrivate)
-
withLocation
public ScheduleItem withLocation(String location)
-
getStart
public Optional<DateTimeTimeZone> getStart()
-
withStart
public ScheduleItem withStart(DateTimeTimeZone start)
-
getStatus
public Optional<FreeBusyStatus> getStatus()
-
withStatus
public ScheduleItem withStatus(FreeBusyStatus status)
-
withSubject
public ScheduleItem withSubject(String subject)
-
withUnmappedField
public ScheduleItem withUnmappedField(String name, String 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 ScheduleItem.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
-
-