Class: Google::Apis::WalletobjectsV1::Permissions
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::Permissions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb
Instance Attribute Summary collapse
-
#issuer_id ⇒ Fixnum
ID of the issuer the list of permissions refer to.
-
#permissions ⇒ Array<Google::Apis::WalletobjectsV1::Permission>
The complete list of permissions for the issuer account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Permissions
constructor
A new instance of Permissions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Permissions
Returns a new instance of Permissions.
7033 7034 7035 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7033 def initialize(**args) update!(**args) end |
Instance Attribute Details
#issuer_id ⇒ Fixnum
ID of the issuer the list of permissions refer to.
Corresponds to the JSON property issuerId
7026 7027 7028 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7026 def issuer_id @issuer_id end |
#permissions ⇒ Array<Google::Apis::WalletobjectsV1::Permission>
The complete list of permissions for the issuer account.
Corresponds to the JSON property permissions
7031 7032 7033 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7031 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7038 7039 7040 7041 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7038 def update!(**args) @issuer_id = args[:issuer_id] if args.key?(:issuer_id) @permissions = args[:permissions] if args.key?(:permissions) end |