Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ManagedProperty

import type { ManagedProperty } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

Managed property.

interface ManagedProperty {
defaultValue?: any;
description?: string;
key?: string;
nestedProperties?: ManagedProperty[];
title?: string;
type?:
| "MANAGED_PROPERTY_TYPE_UNSPECIFIED"
| "BOOL"
| "STRING"
| "INTEGER"
| "CHOICE"
| "MULTISELECT"
| "HIDDEN"
| "BUNDLE"
| "BUNDLE_ARRAY";
}

§Properties

§
defaultValue?: any
[src]

The default value of the property. BUNDLE_ARRAY properties don't have a default value.

§
description?: string
[src]

A longer description of the property, providing more detail of what it affects. Localized.

§

For CHOICE or MULTISELECT properties, the list of possible entries.

§
key?: string
[src]

The unique key that the app uses to identify the property, e.g. "com.google.android.gm.fieldname".

§
nestedProperties?: ManagedProperty[]
[src]

For BUNDLE_ARRAY properties, the list of nested properties. A BUNDLE_ARRAY property is at most two levels deep.

§
title?: string
[src]

The name of the property. Localized.

§
type?: "MANAGED_PROPERTY_TYPE_UNSPECIFIED" | "BOOL" | "STRING" | "INTEGER" | "CHOICE" | "MULTISELECT" | "HIDDEN" | "BUNDLE" | "BUNDLE_ARRAY"
[src]

The type of the property.