Package com.microsoft.graph.models
Class VirtualEventRegistration
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.VirtualEventRegistration
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class VirtualEventRegistration
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Virtual Event Registration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Cancelation Date Time.The Email.The First Name.The Last Name.The Registration Date Time.The Registration Question Answers.The Status.The User Id. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
cancelationDateTime
@SerializedName(value="cancelationDateTime", alternate="CancelationDateTime") @Expose @Nullable public OffsetDateTime cancelationDateTimeThe Cancelation Date Time. Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
email
The Email. Email address of the registrant. -
firstName
The First Name. First name of the registrant. -
lastName
The Last Name. Last name of the registrant. -
registrationDateTime
@SerializedName(value="registrationDateTime", alternate="RegistrationDateTime") @Expose @Nullable public OffsetDateTime registrationDateTimeThe Registration Date Time. Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
registrationQuestionAnswers
@SerializedName(value="registrationQuestionAnswers", alternate="RegistrationQuestionAnswers") @Expose @Nullable public List<VirtualEventRegistrationQuestionAnswer> registrationQuestionAnswersThe Registration Question Answers. The registrant's answer to the registration questions. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public VirtualEventAttendeeRegistrationStatus statusThe Status. Registration status of the registrant. Read-only. -
userId
The User Id. The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID.
-
-
Constructor Details
-
VirtualEventRegistration
public VirtualEventRegistration()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-