class Google::Apis::AndroidmanagementV1::ContactInfo

Contact details for managed Google Play enterprises.

Attributes

contact_email[RW]

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]

data_protection_officer_email[RW]

The email of the data protection officer. The email is validated but not verified. Corresponds to the JSON property `dataProtectionOfficerEmail` @return [String]

data_protection_officer_name[RW]

The name of the data protection officer. Corresponds to the JSON property `dataProtectionOfficerName` @return [String]

data_protection_officer_phone[RW]

The phone number of the data protection officer The phone number is validated but not verified. Corresponds to the JSON property `dataProtectionOfficerPhone` @return [String]

eu_representative_email[RW]

The email of the EU representative. The email is validated but not verified. Corresponds to the JSON property `euRepresentativeEmail` @return [String]

eu_representative_name[RW]

The name of the EU representative. Corresponds to the JSON property `euRepresentativeName` @return [String]

eu_representative_phone[RW]

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

new(**args) click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 749
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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