Contact (API Reference)
Class Contact
Represents contact information.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe list of email addresses with associated categories.The list of landline phone numbers with associated categories.The list of mobile phones numbers with associated categories.The list of website addresses with associated categories. -
Constructor Summary
ConstructorsConstructorDescriptionContact()Creates a new instance.Contact(List<LandlinePhone> landlinePhones, List<MobilePhone> mobilePhones, List<EmailAddress> emails, List<WebsiteAddress> websites) Creates a new instance. -
Method Summary
-
Field Details
-
landlinePhones
The list of landline phone numbers with associated categories. This data is not available in offline search.
-
mobilePhones
The list of mobile phones numbers with associated categories. This data is not available in offline search.
-
emails
The list of email addresses with associated categories. This data is not available in offline search.
-
websites
The list of website addresses with associated categories. This data is not available in offline search.
-
-
Constructor Details
-
Contact
public Contact()Creates a new instance.
-
Contact
public Contact(@NonNull List<LandlinePhone> landlinePhones, @NonNull List<MobilePhone> mobilePhones, @NonNull List<EmailAddress> emails, @NonNull List<WebsiteAddress> websites) Creates a new instance.
- Parameters:
landlinePhones-The list of landline phone numbers with associated categories. This data is not available in offline search.
mobilePhones-The list of mobile phones numbers with associated categories. This data is not available in offline search.
emails-The list of email addresses with associated categories. This data is not available in offline search.
websites-The list of website addresses with associated categories. This data is not available in offline search.
-
-
Method Details