Class: Google::Apis::AndroidenterpriseV1::VariableSet

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/google/apis/androidenterprise_v1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VariableSet

Returns a new instance of VariableSet.



2984
2985
2986
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2984

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#placeholderString

The placeholder string; defined by EMM. Corresponds to the JSON property placeholder

Returns:

  • (String)


2977
2978
2979
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2977

def placeholder
  @placeholder
end

#user_valueString

The value of the placeholder, specific to the user. Corresponds to the JSON property userValue

Returns:

  • (String)


2982
2983
2984
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2982

def user_value
  @user_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2989
2990
2991
2992
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2989

def update!(**args)
  @placeholder = args[:placeholder] if args.key?(:placeholder)
  @user_value = args[:user_value] if args.key?(:user_value)
end