| title | webPartData resource type |
|---|---|
| description | Represents the data of a given web part. |
| author | sangle7 |
| ms.localizationpriority | medium |
| ms.subservice | sharepoint |
| doc_type | resourcePageType |
| ms.date | 03/21/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents the data of a given web part.
| Property | Type | Description |
|---|---|---|
| audiences | String collection | Audience information of the web part. By using this property, specific content is prioritized to specific audiences. |
| dataVersion | String | Data version of the web part. The value is defined by the web part developer. Different dataVersions usually refers to a different property structure. |
| description | String | Description of the web part. |
| properties | Json | Properties bag of the web part. |
| serverProcessedContent | serverProcessedContent | Contains collections of data that can be processed by server side services like search index and link fixup. |
| title | String | Title of the web part. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webPartData",
"audiences": ["String"],
"dataVersion": "String",
"description": "String",
"properties": {
"@odata.type": "microsoft.graph.Json"
},
"serverProcessedContent": {
"@odata.type": "microsoft.graph.serverProcessedContent"
},
"title": "String"
}