| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | | 9 | | { |
| | | 10 | | /// <summary> Details of JobOutput errors. </summary> |
| | | 11 | | public partial class MediaJobErrorDetail |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of MediaJobErrorDetail. </summary> |
| | 0 | 14 | | internal MediaJobErrorDetail() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of MediaJobErrorDetail. </summary> |
| | | 19 | | /// <param name="code"> Code describing the error detail. </param> |
| | | 20 | | /// <param name="message"> A human-readable representation of the error. </param> |
| | 16 | 21 | | internal MediaJobErrorDetail(string code, string message) |
| | | 22 | | { |
| | 16 | 23 | | Code = code; |
| | 16 | 24 | | Message = message; |
| | 16 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> Code describing the error detail. </summary> |
| | 0 | 28 | | public string Code { get; } |
| | | 29 | | /// <summary> A human-readable representation of the error. </summary> |
| | 0 | 30 | | public string Message { get; } |
| | | 31 | | } |
| | | 32 | | } |