class Google::Apis::AndroidmanagementV1::ContactInfo
Contact details for managed Google
Play enterprises.
Attributes
Email address for a point of contact, which will be used to send important announcements related to managed Google
Play. Corresponds to the JSON property `contactEmail` @return [String]
The email of the data protection officer. The email is validated but not verified. Corresponds to the JSON property `dataProtectionOfficerEmail` @return [String]
The name of the data protection officer. Corresponds to the JSON property `dataProtectionOfficerName` @return [String]
The phone number of the data protection officer The phone number is validated but not verified. Corresponds to the JSON property `dataProtectionOfficerPhone` @return [String]
The email of the EU representative. The email is validated but not verified. Corresponds to the JSON property `euRepresentativeEmail` @return [String]
The name of the EU representative. Corresponds to the JSON property `euRepresentativeName` @return [String]
The phone number of the EU representative. The phone number is validated but not verified. Corresponds to the JSON property `euRepresentativePhone` @return [String]
Public Class Methods
# File lib/google/apis/androidmanagement_v1/classes.rb, line 749 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 754 def update!(**args) @contact_email = args[:contact_email] if args.key?(:contact_email) @data_protection_officer_email = args[:data_protection_officer_email] if args.key?(:data_protection_officer_email) @data_protection_officer_name = args[:data_protection_officer_name] if args.key?(:data_protection_officer_name) @data_protection_officer_phone = args[:data_protection_officer_phone] if args.key?(:data_protection_officer_phone) @eu_representative_email = args[:eu_representative_email] if args.key?(:eu_representative_email) @eu_representative_name = args[:eu_representative_name] if args.key?(:eu_representative_name) @eu_representative_phone = args[:eu_representative_phone] if args.key?(:eu_representative_phone) end