com.microsoft.azure.eventgrid.models.MediaJobFinishedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-eventgrid Show documentation
Show all versions of azure-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.eventgrid.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Job finished event data.
*/
public class MediaJobFinishedEventData extends MediaJobStateChangeEventData {
/**
* Gets the Job outputs.
*/
@JsonProperty(value = "outputs")
private List outputs;
/**
* Get gets the Job outputs.
*
* @return the outputs value
*/
public List outputs() {
return this.outputs;
}
/**
* Set gets the Job outputs.
*
* @param outputs the outputs value to set
* @return the MediaJobFinishedEventData object itself.
*/
public MediaJobFinishedEventData withOutputs(List outputs) {
this.outputs = outputs;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy