class Google::Apis::AuthorizedbuyersmarketplaceV1::Contact
Contains information on how a buyer or seller can be reached.
Attributes
display_name[RW]
The display_name
of the contact. Corresponds to the JSON property ‘displayName` @return [String]
email[RW]
Email address for the contact. Corresponds to the JSON property ‘email` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 367 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 372 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end