class Google::Apis::DomainsV1beta1::ContactSettings
Defines the contact information associated with a `Registration`. [ICANN]( icann.org/) requires all domain names to have associated contact information. The `registrant_contact` is considered the domain's legal owner, and often the other contacts are identical.
Attributes
Details required for a contact associated with a `Registration`. Corresponds to the JSON property `adminContact` @return [Google::Apis::DomainsV1beta1::Contact]
Required. Privacy setting for the contacts associated with the `Registration`. Corresponds to the JSON property `privacy` @return [String]
Details required for a contact associated with a `Registration`. Corresponds to the JSON property `registrantContact` @return [Google::Apis::DomainsV1beta1::Contact]
Details required for a contact associated with a `Registration`. Corresponds to the JSON property `technicalContact` @return [Google::Apis::DomainsV1beta1::Contact]
Public Class Methods
# File lib/google/apis/domains_v1beta1/classes.rb, line 372 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/domains_v1beta1/classes.rb, line 377 def update!(**args) @admin_contact = args[:admin_contact] if args.key?(:admin_contact) @privacy = args[:privacy] if args.key?(:privacy) @registrant_contact = args[:registrant_contact] if args.key?(:registrant_contact) @technical_contact = args[:technical_contact] if args.key?(:technical_contact) end