com.microsoft.graph.models.Attendee Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.TimeSlot;
import com.microsoft.graph.models.ResponseStatus;
import com.microsoft.graph.models.AttendeeBase;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Attendee.
*/
public class Attendee extends AttendeeBase implements IJsonBackedObject {
/**
* The Proposed New Time.
* An alternate date/time proposed by the attendee for a meeting request to start and end. If the attendee hasn't proposed another time, then this property isn't included in a response of a GET event.
*/
@SerializedName(value = "proposedNewTime", alternate = {"ProposedNewTime"})
@Expose
@Nullable
public TimeSlot proposedNewTime;
/**
* The Status.
* The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
@Nullable
public ResponseStatus status;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}