Package com.microsoft.graph.models
Class InvitedUserMessageInfo
java.lang.Object
com.microsoft.graph.models.InvitedUserMessageInfo
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class InvitedUserMessageInfo
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Invited User Message Info.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Cc Recipients.The Customized Message Body.The Message Language.the OData type of the object as returned by the service -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
ccRecipients
@SerializedName(value="ccRecipients", alternate="CcRecipients") @Expose @Nullable public List<Recipient> ccRecipientsThe Cc Recipients. Additional recipients the invitation message should be sent to. Currently only 1 additional recipient is supported. -
customizedMessageBody
@SerializedName(value="customizedMessageBody", alternate="CustomizedMessageBody") @Expose @Nullable public String customizedMessageBodyThe Customized Message Body. Customized message body you want to send if you don't want the default message. -
messageLanguage
@SerializedName(value="messageLanguage", alternate="MessageLanguage") @Expose @Nullable public String messageLanguageThe Message Language. The language you want to send the default message in. If the customizedMessageBody is specified, this property is ignored, and the message is sent using the customizedMessageBody. The language format should be in ISO 639. The default is en-US.
-
-
Constructor Details
-
InvitedUserMessageInfo
public InvitedUserMessageInfo()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-