All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.messaging.eventgrid.systemevents.MediaJobOutputErroredEventData Maven / Gradle / Ivy

There is a newer version: 4.27.0
Show newest version
// 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 error event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputErrored
 * event.
 */
@Fluent
public final class MediaJobOutputErroredEventData extends MediaJobOutputStateChangeEventData {
    /** Creates an instance of MediaJobOutputErroredEventData class. */
    public MediaJobOutputErroredEventData() {}

    /** {@inheritDoc} */
    @Override
    public MediaJobOutputErroredEventData setOutput(MediaJobOutput output) {
        super.setOutput(output);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public MediaJobOutputErroredEventData setJobCorrelationData(Map jobCorrelationData) {
        super.setJobCorrelationData(jobCorrelationData);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy