cartToClassAssociation resource type
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
CartToClassAssociation for associating device carts with classrooms.
Methods
Method | Return Type | Description |
---|---|---|
List cartToClassAssociations | cartToClassAssociation collection | List properties and relationships of the cartToClassAssociation objects. |
Get cartToClassAssociation | cartToClassAssociation | Read properties and relationships of the cartToClassAssociation object. |
Create cartToClassAssociation | cartToClassAssociation | Create a new cartToClassAssociation object. |
Delete cartToClassAssociation | None | Deletes a cartToClassAssociation. |
Update cartToClassAssociation | cartToClassAssociation | Update the properties of a cartToClassAssociation object. |
Properties
Property | Type | Description |
---|---|---|
id | String | Key of the entity. |
createdDateTime | DateTimeOffset | DateTime the object was created. |
lastModifiedDateTime | DateTimeOffset | DateTime the object was last modified. |
version | Int32 | Version of the CartToClassAssociation. |
displayName | String | Admin provided name of the device configuration. |
description | String | Admin provided description of the CartToClassAssociation. |
deviceCartIds | String collection | Identifiers of device carts to be associated with classes. |
classroomIds | String collection | Identifiers of classrooms to be associated with device carts. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.cartToClassAssociation",
"id": "String (identifier)",
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"version": 1024,
"displayName": "String",
"description": "String",
"deviceCartIds": [
"String"
],
"classroomIds": [
"String"
]
}