命名空间:microsoft.graph
重要:Microsoft支持Intune /beta API,但它们会受到更频繁的更改。 Microsoft建议尽可能使用版本 v1.0。 使用版本选择器检查 API 在 v1.0 版中的可用性。
注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证。
Android 应用程序的自定义配置架构中的单个配置项目。
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| index | Int32 | 应用程序用于维护嵌套架构项的唯一索引 |
| parentIndex | Int32 | 用于跟踪嵌套架构项的父架构项的索引 |
| schemaItemKey | String | 应用程序用于标识项的唯一键 |
| displayName | String | 用户可读的名称 |
| 说明 | String | 项在应用程序内所控制内容的说明 |
| defaultBoolValue | 布尔值 | 如果由应用开发人员指定,则为布尔类型项的默认值 |
| defaultIntValue | Int32 | 如果由应用开发人员指定,则为整数类型项的默认值 |
| defaultStringValue | String | 如果由应用开发人员指定,则为字符串类型项的默认值 |
| defaultStringArrayValue | String collection | 如果由应用开发人员指定,则为字符串数组类型项的默认值 |
| DataType | androidManagedStoreAppConfigurationSchemaItemDataType | 此项描述的值的类型。 可能的值为:bool、、integer、string、choicemultiselect、bundle、bundleArray、 。 hidden |
| 选择 | keyValuePair 集合 | 可为此项(仅 Choice 和 Multiselect 项)设置的有效值的用于可读名称/值对列表 |
关系
无
JSON 表示形式
下面是资源的 JSON 表示形式。
{
"@odata.type": "#microsoft.graph.androidManagedStoreAppConfigurationSchemaItem",
"index": 1024,
"parentIndex": 1024,
"schemaItemKey": "String",
"displayName": "String",
"description": "String",
"defaultBoolValue": true,
"defaultIntValue": 1024,
"defaultStringValue": "String",
"defaultStringArrayValue": [
"String"
],
"dataType": "String",
"selections": [
{
"@odata.type": "microsoft.graph.keyValuePair",
"name": "String",
"value": "String"
}
]
}