Class: Google::Apis::WalletobjectsV1::Permission
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::Permission
- 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
-
#email_address ⇒ String
The email address of the user, group, or service account to which this permission refers to.
-
#role ⇒ String
The role granted by this permission.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Permission
constructor
A new instance of Permission.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Permission
Returns a new instance of Permission.
7017 7018 7019 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email_address ⇒ String
The email address of the user, group, or service account to which this
permission refers to.
Corresponds to the JSON property emailAddress
7010 7011 7012 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7010 def email_address @email_address end |
#role ⇒ String
The role granted by this permission.
Corresponds to the JSON property role
7015 7016 7017 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7015 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7022 7023 7024 7025 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7022 def update!(**args) @email_address = args[:email_address] if args.key?(:email_address) @role = args[:role] if args.key?(:role) end |