Class ManagedProperty
A managed property of a managed configuration. The property must match one of the properties in the app restrictions schema of the product. Exactly one of the value fields must be populated, and it must match the property's type in the app restrictions schema.
Implements
Inherited Members
Namespace: Google.Apis.AndroidEnterprise.v1.Data
Assembly: Google.Apis.AndroidEnterprise.v1.dll
Syntax
public class ManagedProperty : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Key
The unique key that identifies the property.
Declaration
[JsonProperty("key")]
public virtual string Key { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ValueBool
The boolean value - this will only be present if type of the property is bool.
Declaration
[JsonProperty("valueBool")]
public virtual bool? ValueBool { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
ValueBundle
The bundle of managed properties - this will only be present if type of the property is bundle.
Declaration
[JsonProperty("valueBundle")]
public virtual ManagedPropertyBundle ValueBundle { get; set; }
Property Value
| Type | Description |
|---|---|
| ManagedPropertyBundle |
ValueBundleArray
The list of bundles of properties - this will only be present if type of the property is bundle_array.
Declaration
[JsonProperty("valueBundleArray")]
public virtual IList<ManagedPropertyBundle> ValueBundleArray { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<ManagedPropertyBundle> |
ValueInteger
The integer value - this will only be present if type of the property is integer.
Declaration
[JsonProperty("valueInteger")]
public virtual int? ValueInteger { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
ValueString
The string value - this will only be present if type of the property is string, choice or hidden.
Declaration
[JsonProperty("valueString")]
public virtual string ValueString { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ValueStringArray
The list of string values - this will only be present if type of the property is multiselect.
Declaration
[JsonProperty("valueStringArray")]
public virtual IList<string> ValueStringArray { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |