Package odata.msgraph.client.complex
Class IosHomeScreenPage
- java.lang.Object
-
- odata.msgraph.client.complex.IosHomeScreenPage
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class IosHomeScreenPage extends Object implements com.github.davidmoten.odata.client.ODataType
“A page containing apps, folders, and web clips on the Home Screen.”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIosHomeScreenPage.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected StringdisplayNameprotected List<IosHomeScreenItem>iconsprotected StringiconsNextLinkprotected StringodataTypeprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedIosHomeScreenPage()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IosHomeScreenPage.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getDisplayName()“Name of the page”com.github.davidmoten.odata.client.CollectionPage<IosHomeScreenItem>getIcons()“A list of apps, folders, and web clips to appear on a page.com.github.davidmoten.odata.client.CollectionPage<IosHomeScreenItem>getIcons(com.github.davidmoten.odata.client.HttpRequestOptions options)“A list of apps, folders, and web clips to appear on a page.com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()IosHomeScreenPagewithDisplayName(String displayName)Returns an immutable copy ofthiswith just thedisplayNamefield changed.IosHomeScreenPagewithUnmappedField(String name, Object 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
-
displayName
protected String displayName
-
icons
protected List<IosHomeScreenItem> icons
-
iconsNextLink
protected String iconsNextLink
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getDisplayName
public Optional<String> getDisplayName()
“Name of the page”- Returns:
- property displayName
-
withDisplayName
public IosHomeScreenPage withDisplayName(String displayName)
Returns an immutable copy ofthiswith just thedisplayNamefield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis. patch()is called (if available)on the returned object only the changed fields are submitted.“Name of the page”
- Parameters:
displayName- new value ofdisplayNamefield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just thedisplayNamefield changed
-
getIcons
public com.github.davidmoten.odata.client.CollectionPage<IosHomeScreenItem> getIcons()
“A list of apps, folders, and web clips to appear on a page. This collection can contain a maximum of 500 elements.”- Returns:
- property icons
-
getIcons
public com.github.davidmoten.odata.client.CollectionPage<IosHomeScreenItem> getIcons(com.github.davidmoten.odata.client.HttpRequestOptions options)
“A list of apps, folders, and web clips to appear on a page. This collection can contain a maximum of 500 elements.”- Parameters:
options- specify connect and read timeouts- Returns:
- property icons
-
withUnmappedField
public IosHomeScreenPage 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 IosHomeScreenPage.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
-
-