public class ManagedAppOperation extends Entity implements com.github.davidmoten.odata.client.ODataEntityType
| Modifier and Type | Class and Description |
|---|---|
static class |
ManagedAppOperation.Builder |
| Modifier and Type | Field and Description |
|---|---|
protected String |
displayName |
protected OffsetDateTime |
lastModifiedDateTime |
protected String |
state |
protected String |
version |
changedFields, contextPath, id, odataType, unmappedFields| Modifier | Constructor and Description |
|---|---|
protected |
ManagedAppOperation() |
| Modifier and Type | Method and Description |
|---|---|
static ManagedAppOperation.Builder |
builderManagedAppOperation()
Returns a builder which is used to create a new
instance of this class (given that this class is immutable).
|
com.github.davidmoten.odata.client.internal.ChangedFields |
getChangedFields() |
Optional<String> |
getDisplayName()
“The operation name.”
|
Optional<OffsetDateTime> |
getLastModifiedDateTime()
“The last time the app operation was modified.”
|
Optional<String> |
getState()
“The current state of the operation”
|
com.github.davidmoten.odata.client.internal.UnmappedFields |
getUnmappedFields() |
Optional<String> |
getVersion()
“Version of the entity.”
|
String |
odataTypeName() |
ManagedAppOperation |
patch()
Submits only changed fields for update and returns an
immutable copy of
this with changed fields reset. |
void |
postInject(boolean addKeysToContextPath) |
ManagedAppOperation |
put()
Submits all fields for update and returns an immutable copy of
this
with changed fields reset (they were ignored anyway). |
String |
toString() |
ManagedAppOperation |
withDisplayName(String displayName)
Returns an immutable copy of
this with just the displayName
field changed. |
ManagedAppOperation |
withLastModifiedDateTime(OffsetDateTime lastModifiedDateTime)
Returns an immutable copy of
this with just the lastModifiedDateTime field changed. |
ManagedAppOperation |
withState(String state)
Returns an immutable copy of
this with just the state field
changed. |
ManagedAppOperation |
withVersion(String version)
Returns an immutable copy of
this with just the version field
changed. |
protected String displayName
protected OffsetDateTime lastModifiedDateTime
protected String state
protected String version
public String odataTypeName()
odataTypeName in interface com.github.davidmoten.odata.client.ODataTypeodataTypeName in class Entitypublic static ManagedAppOperation.Builder builderManagedAppOperation()
public com.github.davidmoten.odata.client.internal.ChangedFields getChangedFields()
getChangedFields in interface com.github.davidmoten.odata.client.ODataEntityTypegetChangedFields in class Entitypublic void postInject(boolean addKeysToContextPath)
postInject in interface com.github.davidmoten.odata.client.ODataTypepostInject in class Entitypublic Optional<String> getDisplayName()
public ManagedAppOperation withDisplayName(String displayName)
this with just the displayName
field changed. Field description below. The field name is also added to an
internal map of changed fields in the returned object so that when this.
patch() is called (if available)on the returned object only the changed fields
are submitted.
“The operation name.”
displayName - new value of displayName field (as defined in service metadata)this with just the displayName field changedpublic Optional<OffsetDateTime> getLastModifiedDateTime()
public ManagedAppOperation withLastModifiedDateTime(OffsetDateTime lastModifiedDateTime)
this with just the lastModifiedDateTime field changed. Field description below. The field name is
also added to an internal map of changed fields in the returned object so that
when this.patch() is called (if available)on the returned object only
the changed fields are submitted.
“The last time the app operation was modified.”
lastModifiedDateTime - new value of lastModifiedDateTime field (as defined in service metadata)this with just the lastModifiedDateTime field changedpublic Optional<String> getState()
public ManagedAppOperation withState(String state)
this with just the state field
changed. Field description below. The field name is also added to an internal
map of changed fields in the returned object so that when this.patch()
is called (if available)on the returned object only the changed fields are
submitted.
“The current state of the operation”
state - new value of state field (as defined in service metadata)this with just the state field changedpublic ManagedAppOperation withVersion(String version)
this with just the version field
changed. Field description below. The field name is also added to an internal
map of changed fields in the returned object so that when this.patch()
is called (if available)on the returned object only the changed fields are
submitted.
“Version of the entity.”
version - new value of version field (as defined in service metadata)this with just the version field changedpublic com.github.davidmoten.odata.client.internal.UnmappedFields getUnmappedFields()
getUnmappedFields in interface com.github.davidmoten.odata.client.ODataTypegetUnmappedFields in class Entitypublic ManagedAppOperation patch()
this with changed fields reset.public ManagedAppOperation put()
this
with changed fields reset (they were ignored anyway).Copyright © 2018–2020. All rights reserved.