androidForWorkAppConfigurationSchemaItem 资源类型

命名空间:microsoft.graph

重要: /beta 版本下的 Microsoft Graph API 可能会更改;不支持生产使用。

注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证

Android for Work 应用程序的自定义配置架构内的单个配置项。

属性

属性 类型 说明
schemaItemKey String 应用程序用于标识项的唯一键
displayName String 用户可读的名称
说明 String 项在应用程序内所控制内容的说明
defaultBoolValue 布尔值 如果由应用开发人员指定,则为布尔类型项的默认值
defaultIntValue Int32 如果由应用开发人员指定,则为整数类型项的默认值
defaultStringValue String 如果由应用开发人员指定,则为字符串类型项的默认值
defaultStringArrayValue String collection 如果由应用开发人员指定,则为字符串数组类型项的默认值
DataType androidForWorkAppConfigurationSchemaItemDataType 此项描述的值的类型。 可取值为:boolintegerstringchoicemultiselectbundlebundleArrayhidden
选择 keyValuePair 集合 可为此项(仅 Choice 和 Multiselect 项)设置的有效值的用于可读名称/值对列表

关系

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.androidForWorkAppConfigurationSchemaItem",
  "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"
    }
  ]
}