managedEBook resource type
Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
An abstract class containing the base properties for Managed eBook.
Methods
Method | Return Type | Description |
---|---|---|
List managedEBooks | managedEBook collection | List properties and relationships of the managedEBook objects. |
Get managedEBook | managedEBook | Read properties and relationships of the managedEBook object. |
assign action | None | Not yet documented |
Properties
Property | Type | Description |
---|---|---|
id | String | Key of the entity. |
displayName | String | Name of the eBook. |
description | String | Description. |
publisher | String | Publisher. |
publishedDateTime | DateTimeOffset | The date and time when the eBook was published. |
largeCover | mimeContent | Book cover. |
createdDateTime | DateTimeOffset | The date and time when the eBook file was created. |
lastModifiedDateTime | DateTimeOffset | The date and time when the eBook was last modified. |
informationUrl | String | The more information Url. |
privacyInformationUrl | String | The privacy statement Url. |
Relationships
Relationship | Type | Description |
---|---|---|
assignments | managedEBookAssignment collection | The list of assignments for this eBook. |
installSummary | eBookInstallSummary | Mobile App Install Summary. |
deviceStates | deviceInstallState collection | The list of installation states for this eBook. |
userStateSummary | userInstallStateSummary collection | The list of installation states for this eBook. |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.managedEBook",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"publisher": "String",
"publishedDateTime": "String (timestamp)",
"largeCover": {
"@odata.type": "microsoft.graph.mimeContent",
"type": "String",
"value": "binary"
},
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"informationUrl": "String",
"privacyInformationUrl": "String"
}