Package com.microsoft.graph.models
Class Person
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.Person
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Person.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Birthday.The Company Name.The Department.The Display Name.The Given Name.The Im Address.The Is Favorite.The Job Title.The Office Location.The Person Notes.The Person Type.The Phones.The Postal Addresses.The Profession.The Scored Email Addresses.The Surname.The User Principal Name.The Websites.The Yomi Company. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
birthday
The Birthday. The person's birthday. -
companyName
@SerializedName(value="companyName", alternate="CompanyName") @Expose @Nullable public String companyNameThe Company Name. The name of the person's company. -
department
@SerializedName(value="department", alternate="Department") @Expose @Nullable public String departmentThe Department. The person's department. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The person's display name. -
givenName
The Given Name. The person's given name. -
imAddress
The Im Address. The instant message voice over IP (VOIP) session initiation protocol (SIP) address for the user. Read-only. -
isFavorite
@SerializedName(value="isFavorite", alternate="IsFavorite") @Expose @Nullable public Boolean isFavoriteThe Is Favorite. true if the user has flagged this person as a favorite. -
jobTitle
The Job Title. The person's job title. -
officeLocation
@SerializedName(value="officeLocation", alternate="OfficeLocation") @Expose @Nullable public String officeLocationThe Office Location. The location of the person's office. -
personNotes
@SerializedName(value="personNotes", alternate="PersonNotes") @Expose @Nullable public String personNotesThe Person Notes. Free-form notes that the user has taken about this person. -
personType
@SerializedName(value="personType", alternate="PersonType") @Expose @Nullable public PersonType personTypeThe Person Type. The type of person, for example distribution list. -
phones
The Phones. The person's phone numbers. -
postalAddresses
@SerializedName(value="postalAddresses", alternate="PostalAddresses") @Expose @Nullable public List<Location> postalAddressesThe Postal Addresses. The person's addresses. -
profession
@SerializedName(value="profession", alternate="Profession") @Expose @Nullable public String professionThe Profession. The person's profession. -
scoredEmailAddresses
@SerializedName(value="scoredEmailAddresses", alternate="ScoredEmailAddresses") @Expose @Nullable public List<ScoredEmailAddress> scoredEmailAddressesThe Scored Email Addresses. The person's email addresses. -
surname
The Surname. The person's surname. -
userPrincipalName
@SerializedName(value="userPrincipalName", alternate="UserPrincipalName") @Expose @Nullable public String userPrincipalNameThe User Principal Name. The user principal name (UPN) of the person. The UPN is an Internet-style login name for the person based on the Internet standard RFC 822. By convention, this should map to the person's email name. The general format is alias@domain. -
websites
@SerializedName(value="websites", alternate="Websites") @Expose @Nullable public List<Website> websitesThe Websites. The person's websites. -
yomiCompany
@SerializedName(value="yomiCompany", alternate="YomiCompany") @Expose @Nullable public String yomiCompanyThe Yomi Company. The phonetic Japanese name of the person's company.
-
-
Constructor Details
-
Person
public Person()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-