Package odata.msgraph.client.complex
Class IosMobileAppIdentifier
- java.lang.Object
-
- odata.msgraph.client.complex.MobileAppIdentifier
-
- odata.msgraph.client.complex.IosMobileAppIdentifier
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class IosMobileAppIdentifier extends MobileAppIdentifier implements com.github.davidmoten.odata.client.ODataType
“The identifier for an iOS app.”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIosMobileAppIdentifier.Builder
-
Field Summary
Fields Modifier and Type Field Description protected StringbundleId-
Fields inherited from class odata.msgraph.client.complex.MobileAppIdentifier
contextPath, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedIosMobileAppIdentifier()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IosMobileAppIdentifier.BuilderbuilderIosMobileAppIdentifier()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getBundleId()“The identifier for an app, as specified in the app store.”com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()IosMobileAppIdentifierwithBundleId(String bundleId)Returns an immutable copy ofthiswith just thebundleIdfield changed.IosMobileAppIdentifierwithUnmappedField(String name, Object value)
-
-
-
Field Detail
-
bundleId
protected String bundleId
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classMobileAppIdentifier
-
getBundleId
public Optional<String> getBundleId()
“The identifier for an app, as specified in the app store.”- Returns:
- property bundleId
-
withBundleId
public IosMobileAppIdentifier withBundleId(String bundleId)
Returns an immutable copy ofthiswith just thebundleIdfield 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.“The identifier for an app, as specified in the app store.”
- Parameters:
bundleId- new value ofbundleIdfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just thebundleIdfield changed
-
withUnmappedField
public IosMobileAppIdentifier withUnmappedField(String name, Object value)
- Overrides:
withUnmappedFieldin classMobileAppIdentifier
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classMobileAppIdentifier
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classMobileAppIdentifier
-
builderIosMobileAppIdentifier
public static IosMobileAppIdentifier.Builder builderIosMobileAppIdentifier()
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
-
toString
public String toString()
- Overrides:
toStringin classMobileAppIdentifier
-
-