Class: Google::Apis::WalletobjectsV1::IssuerContactInfo
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::IssuerContactInfo
- 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
-
#alerts_emails ⇒ Array<String>
Email addresses which will receive alerts.
-
#email ⇒ String
The primary contact email address.
-
#name ⇒ String
The primary contact name.
-
#phone ⇒ String
The primary contact phone number.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IssuerContactInfo
constructor
A new instance of IssuerContactInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IssuerContactInfo
Returns a new instance of IssuerContactInfo.
4515 4516 4517 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4515 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alerts_emails ⇒ Array<String>
Email addresses which will receive alerts.
Corresponds to the JSON property alertsEmails
4498 4499 4500 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4498 def alerts_emails @alerts_emails end |
#email ⇒ String
The primary contact email address.
Corresponds to the JSON property email
4503 4504 4505 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4503 def email @email end |
#name ⇒ String
The primary contact name.
Corresponds to the JSON property name
4508 4509 4510 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4508 def name @name end |
#phone ⇒ String
The primary contact phone number.
Corresponds to the JSON property phone
4513 4514 4515 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4513 def phone @phone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4520 4521 4522 4523 4524 4525 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4520 def update!(**args) @alerts_emails = args[:alerts_emails] if args.key?(:alerts_emails) @email = args[:email] if args.key?(:email) @name = args[:name] if args.key?(:name) @phone = args[:phone] if args.key?(:phone) end |