Class VariableSet
A variable set is a key-value pair of EMM-provided placeholders and its corresponding value, which is attributed to a user. For example, $FIRSTNAME could be a placeholder, and its value could be Alice. Placeholders should start with a '$' sign and should be alphanumeric only.
Implements
Inherited Members
Namespace: Google.Apis.AndroidEnterprise.v1.Data
Assembly: Google.Apis.AndroidEnterprise.v1.dll
Syntax
public class VariableSet : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Placeholder
The placeholder string; defined by EMM.
Declaration
[JsonProperty("placeholder")]
public virtual string Placeholder { get; set; }
Property Value
Type | Description |
---|---|
string |
UserValue
The value of the placeholder, specific to the user.
Declaration
[JsonProperty("userValue")]
public virtual string UserValue { get; set; }
Property Value
Type | Description |
---|---|
string |