accessPackageLocalizedContent resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
A complex type used to represent a text in multiple localized forms. It includes a default text, which is used in any case where the requested localization isn't available.
Properties
Property | Type | Description |
---|---|---|
defaultText | String | The fallback string, which is used when a requested localization isn't available. Required. |
localizedTexts | accessPackageLocalizedText collection | Content represented in a format for a specific locale. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.accessPackageLocalizedContent",
"defaultText": "String",
"localizedTexts": [
{
"@odata.type": "microsoft.graph.accessPackageLocalizedText"
}
]
}