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.
6392 6393 6394 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6392 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
6385 6386 6387 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6385 def email_address @email_address end |
#role ⇒ String
The role granted by this permission.
Corresponds to the JSON property role
6390 6391 6392 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6390 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6397 6398 6399 6400 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 6397 def update!(**args) @email_address = args[:email_address] if args.key?(:email_address) @role = args[:role] if args.key?(:role) end |