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.
6572 6573 6574 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6572 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
6565 6566 6567 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6565 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
6570 6571 6572 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6570 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6577 6578 6579 6580 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6577 def update!(**args) @issuer_id = args[:issuer_id] if args.key?(:issuer_id) @permissions = args[:permissions] if args.key?(:permissions) end |