| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 12 | | { |
| | 13 | | /// <summary> Job Output Progress Event Data. </summary> |
| | 14 | | public partial class MediaJobOutputProgressEventData |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of MediaJobOutputProgressEventData. </summary> |
| 0 | 17 | | internal MediaJobOutputProgressEventData() |
| | 18 | | { |
| 0 | 19 | | JobCorrelationData = new ChangeTrackingDictionary<string, string>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> Initializes a new instance of MediaJobOutputProgressEventData. </summary> |
| | 23 | | /// <param name="label"> Gets the Job output label. </param> |
| | 24 | | /// <param name="progress"> Gets the Job output progress. </param> |
| | 25 | | /// <param name="jobCorrelationData"> Gets the Job correlation data. </param> |
| 2 | 26 | | internal MediaJobOutputProgressEventData(string label, long? progress, IReadOnlyDictionary<string, string> jobCo |
| | 27 | | { |
| 2 | 28 | | Label = label; |
| 2 | 29 | | Progress = progress; |
| 2 | 30 | | JobCorrelationData = jobCorrelationData; |
| 2 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> Gets the Job output label. </summary> |
| 2 | 34 | | public string Label { get; } |
| | 35 | | /// <summary> Gets the Job output progress. </summary> |
| 2 | 36 | | public long? Progress { get; } |
| | 37 | | /// <summary> Gets the Job correlation data. </summary> |
| 8 | 38 | | public IReadOnlyDictionary<string, string> JobCorrelationData { get; } |
| | 39 | | } |
| | 40 | | } |