Package odata.msgraph.client.entity
Class List
- java.lang.Object
-
- odata.msgraph.client.entity.Entity
-
- odata.msgraph.client.entity.BaseItem
-
- odata.msgraph.client.entity.List
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataEntityType,com.github.davidmoten.odata.client.ODataType
public class List extends BaseItem implements com.github.davidmoten.odata.client.ODataEntityType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classList.Builder
-
Field Summary
Fields Modifier and Type Field Description protected List<ColumnDefinition>columnsprotected List<ContentType>contentTypesprotected StringdisplayNameprotected Drivedriveprotected List<ListItem>itemsprotected ListInfolistprotected List<RichLongRunningOperation>operationsprotected SharepointIdssharepointIdsprotected List<Subscription>subscriptionsprotected SystemFacetsystem-
Fields inherited from class odata.msgraph.client.entity.BaseItem
createdBy, createdDateTime, description, eTag, lastModifiedBy, lastModifiedDateTime, name, parentReference, webUrl
-
Fields inherited from class odata.msgraph.client.entity.Entity
changedFields, contextPath, id, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedList()
-
Method Summary
-
Methods inherited from class odata.msgraph.client.entity.BaseItem
getCreatedBy, getCreatedByUser, getCreatedDateTime, getDescription, getETag, getLastModifiedBy, getLastModifiedByUser, getLastModifiedDateTime, getName, getParentReference, getWebUrl, withCreatedBy, withCreatedDateTime, withDescription, withETag, withLastModifiedBy, withLastModifiedDateTime, withName, withParentReference, withWebUrl
-
-
-
-
Field Detail
-
displayName
protected String displayName
-
list
protected ListInfo list
-
sharepointIds
protected SharepointIds sharepointIds
-
system
protected SystemFacet system
-
columns
protected List<ColumnDefinition> columns
-
contentTypes
protected List<ContentType> contentTypes
-
drive
protected Drive drive
-
operations
protected List<RichLongRunningOperation> operations
-
subscriptions
protected List<Subscription> subscriptions
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classBaseItem
-
builderList
public static List.Builder builderList()
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
-
getChangedFields
public com.github.davidmoten.odata.client.internal.ChangedFields getChangedFields()
- Specified by:
getChangedFieldsin interfacecom.github.davidmoten.odata.client.ODataEntityType- Overrides:
getChangedFieldsin classBaseItem
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classBaseItem
-
getSharepointIds
public Optional<SharepointIds> getSharepointIds()
-
withSharepointIds
public List withSharepointIds(SharepointIds sharepointIds)
-
getSystem
public Optional<SystemFacet> getSystem()
-
withSystem
public List withSystem(SystemFacet system)
-
withUnmappedField
public List withUnmappedField(String name, Object value)
- Overrides:
withUnmappedFieldin classBaseItem
-
getColumns
public ColumnDefinitionCollectionRequest getColumns()
-
getContentTypes
public ContentTypeCollectionRequest getContentTypes()
-
getDrive
public DriveRequest getDrive()
-
getItems
public ListItemCollectionRequest getItems()
-
getOperations
public RichLongRunningOperationCollectionRequest getOperations()
-
getSubscriptions
public SubscriptionCollectionRequest getSubscriptions()
-
withColumns
public List withColumns(List<ColumnDefinition> columns)
-
withContentTypes
public List withContentTypes(List<ContentType> contentTypes)
-
withOperations
public List withOperations(List<RichLongRunningOperation> operations)
-
withSubscriptions
public List withSubscriptions(List<Subscription> subscriptions)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classBaseItem
-
patch
public List patch()
Submits only changed fields for update and returns an immutable copy ofthiswith changed fields reset.
-
put
public List put()
Submits all fields for update and returns an immutable copy ofthiswith changed fields reset (they were ignored anyway).
-
-