Class: Google::Apis::AndroidenterpriseV1::ListEntitlementsResponse

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

Overview

The entitlement resources for the user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListEntitlementsResponse

Returns a new instance of ListEntitlementsResponse



760
761
762
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 760

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

Instance Attribute Details

#entitlementArray<Google::Apis::AndroidenterpriseV1::Entitlement>

An entitlement of a user to a product (e.g. an app). For example, a free app that they have installed, or a paid app that they have been allocated a license to. Corresponds to the JSON property entitlement



752
753
754
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 752

def entitlement
  @entitlement
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " androidenterprise#entitlementsListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


758
759
760
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 758

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



765
766
767
768
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 765

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