class Google::Apis::AndroidenterpriseV1::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.
Attributes
placeholder[RW]
The placeholder string; defined by EMM. Corresponds to the JSON property `placeholder` @return [String]
user_value[RW]
The value of the placeholder, specific to the user. Corresponds to the JSON property `userValue` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2837 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2842 def update!(**args) @placeholder = args[:placeholder] if args.key?(:placeholder) @user_value = args[:user_value] if args.key?(:user_value) end