Class: Google::Apis::AndroidmanagementV1::ContactInfo
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::ContactInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb
Overview
Contact details for managed Google Play enterprises.
Instance Attribute Summary collapse
-
#contact_email ⇒ String
Email address for a point of contact, which will be used to send important announcements related to managed Google Play.
-
#data_protection_officer_email ⇒ String
The email of the data protection officer.
-
#data_protection_officer_name ⇒ String
The name of the data protection officer.
-
#data_protection_officer_phone ⇒ String
The phone number of the data protection officer The phone number is validated but not verified.
-
#eu_representative_email ⇒ String
The email of the EU representative.
-
#eu_representative_name ⇒ String
The name of the EU representative.
-
#eu_representative_phone ⇒ String
The phone number of the EU representative.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContactInfo
constructor
A new instance of ContactInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContactInfo
Returns a new instance of ContactInfo.
1349 1350 1351 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1349 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contact_email ⇒ String
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
1314 1315 1316 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1314 def contact_email @contact_email end |
#data_protection_officer_email ⇒ String
The email of the data protection officer. The email is validated but not
verified.
Corresponds to the JSON property dataProtectionOfficerEmail
1320 1321 1322 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1320 def data_protection_officer_email @data_protection_officer_email end |
#data_protection_officer_name ⇒ String
The name of the data protection officer.
Corresponds to the JSON property dataProtectionOfficerName
1325 1326 1327 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1325 def data_protection_officer_name @data_protection_officer_name end |
#data_protection_officer_phone ⇒ String
The phone number of the data protection officer The phone number is validated
but not verified.
Corresponds to the JSON property dataProtectionOfficerPhone
1331 1332 1333 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1331 def data_protection_officer_phone @data_protection_officer_phone end |
#eu_representative_email ⇒ String
The email of the EU representative. The email is validated but not verified.
Corresponds to the JSON property euRepresentativeEmail
1336 1337 1338 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1336 def eu_representative_email @eu_representative_email end |
#eu_representative_name ⇒ String
The name of the EU representative.
Corresponds to the JSON property euRepresentativeName
1341 1342 1343 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1341 def eu_representative_name @eu_representative_name end |
#eu_representative_phone ⇒ String
The phone number of the EU representative. The phone number is validated but
not verified.
Corresponds to the JSON property euRepresentativePhone
1347 1348 1349 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1347 def eu_representative_phone @eu_representative_phone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1354 1355 1356 1357 1358 1359 1360 1361 1362 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1354 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 |