com.azure.messaging.eventgrid.systemevents.DataBoxOrderCompletedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.OrderCompleted event. */
@Fluent
public final class DataBoxOrderCompletedEventData {
/*
* Serial Number of the device associated with the event. The list is comma separated if more than one serial
* number is associated.
*/
@JsonProperty(value = "serialNumber")
private String serialNumber;
/*
* Name of the current Stage
*/
@JsonProperty(value = "stageName")
private DataBoxStageName stageName;
/*
* The time at which the stage happened.
*/
@JsonProperty(value = "stageTime")
private OffsetDateTime stageTime;
/** Creates an instance of DataBoxOrderCompletedEventData class. */
public DataBoxOrderCompletedEventData() {}
/**
* Get the serialNumber property: Serial Number of the device associated with the event. The list is comma separated
* if more than one serial number is associated.
*
* @return the serialNumber value.
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
* Set the serialNumber property: Serial Number of the device associated with the event. The list is comma separated
* if more than one serial number is associated.
*
* @param serialNumber the serialNumber value to set.
* @return the DataBoxOrderCompletedEventData object itself.
*/
public DataBoxOrderCompletedEventData setSerialNumber(String serialNumber) {
this.serialNumber = serialNumber;
return this;
}
/**
* Get the stageName property: Name of the current Stage.
*
* @return the stageName value.
*/
public DataBoxStageName getStageName() {
return this.stageName;
}
/**
* Set the stageName property: Name of the current Stage.
*
* @param stageName the stageName value to set.
* @return the DataBoxOrderCompletedEventData object itself.
*/
public DataBoxOrderCompletedEventData setStageName(DataBoxStageName stageName) {
this.stageName = stageName;
return this;
}
/**
* Get the stageTime property: The time at which the stage happened.
*
* @return the stageTime value.
*/
public OffsetDateTime getStageTime() {
return this.stageTime;
}
/**
* Set the stageTime property: The time at which the stage happened.
*
* @param stageTime the stageTime value to set.
* @return the DataBoxOrderCompletedEventData object itself.
*/
public DataBoxOrderCompletedEventData setStageTime(OffsetDateTime stageTime) {
this.stageTime = stageTime;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy