Class AppRestrictionsSchemaRestrictionRestrictionValue
A typed value for the restriction.
Implements
Inherited Members
Namespace: Google.Apis.AndroidEnterprise.v1.Data
Assembly: Google.Apis.AndroidEnterprise.v1.dll
Syntax
public class AppRestrictionsSchemaRestrictionRestrictionValue : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The type of the value being provided.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
ValueBool
The boolean value - this will only be present if type is bool.
Declaration
[JsonProperty("valueBool")]
public virtual bool? ValueBool { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ValueInteger
The integer value - this will only be present if type is integer.
Declaration
[JsonProperty("valueInteger")]
public virtual int? ValueInteger { get; set; }
Property Value
Type | Description |
---|---|
int? |
ValueMultiselect
The list of string values - this will only be present if type is multiselect.
Declaration
[JsonProperty("valueMultiselect")]
public virtual IList<string> ValueMultiselect { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ValueString
The string value - this will be present for types string, choice and hidden.
Declaration
[JsonProperty("valueString")]
public virtual string ValueString { get; set; }
Property Value
Type | Description |
---|---|
string |