com.azure.messaging.eventgrid.systemevents.MediaJobOutputFinishedEventData 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 java.util.Map;
/**
* Job output finished event data. Schema of the data property of an EventGridEvent for a
* Microsoft.Media.JobOutputFinished event.
*/
@Fluent
public final class MediaJobOutputFinishedEventData extends MediaJobOutputStateChangeEventData {
/** Creates an instance of MediaJobOutputFinishedEventData class. */
public MediaJobOutputFinishedEventData() {}
/** {@inheritDoc} */
@Override
public MediaJobOutputFinishedEventData setOutput(MediaJobOutput output) {
super.setOutput(output);
return this;
}
/** {@inheritDoc} */
@Override
public MediaJobOutputFinishedEventData setJobCorrelationData(Map jobCorrelationData) {
super.setJobCorrelationData(jobCorrelationData);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy