Class: Google::Apis::AndroidmanagementV1::ManagedPropertyEntry

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

Overview

An entry of a managed property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ManagedPropertyEntry

Returns a new instance of ManagedPropertyEntry.



3397
3398
3399
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3397

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

Instance Attribute Details

#nameString

The human-readable name of the value. Localized. Corresponds to the JSON property name

Returns:

  • (String)


3389
3390
3391
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3389

def name
  @name
end

#valueString

The machine-readable value of the entry, which should be used in the configuration. Not localized. Corresponds to the JSON property value

Returns:

  • (String)


3395
3396
3397
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3395

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3402
3403
3404
3405
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3402

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