| | | 1 | | // <auto-generated> |
| | | 2 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | | 3 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | | 4 | | // regenerated. |
| | | 5 | | // </auto-generated> |
| | | 6 | | |
| | | 7 | | namespace Microsoft.Azure.CognitiveServices.ContentModerator.Models |
| | | 8 | | { |
| | | 9 | | using Newtonsoft.Json; |
| | | 10 | | using System.Collections; |
| | | 11 | | using System.Collections.Generic; |
| | | 12 | | using System.Linq; |
| | | 13 | | |
| | | 14 | | /// <summary> |
| | | 15 | | /// The list of job ids. |
| | | 16 | | /// </summary> |
| | | 17 | | public partial class JobListResult |
| | | 18 | | { |
| | | 19 | | /// <summary> |
| | | 20 | | /// Initializes a new instance of the JobListResult class. |
| | | 21 | | /// </summary> |
| | 0 | 22 | | public JobListResult() |
| | | 23 | | { |
| | | 24 | | CustomInit(); |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// Initializes a new instance of the JobListResult class. |
| | | 29 | | /// </summary> |
| | | 30 | | /// <param name="value">The job id.</param> |
| | 0 | 31 | | public JobListResult(IList<string> value = default(IList<string>)) |
| | | 32 | | { |
| | 0 | 33 | | Value = value; |
| | | 34 | | CustomInit(); |
| | 0 | 35 | | } |
| | | 36 | | |
| | | 37 | | /// <summary> |
| | | 38 | | /// An initialization method that performs custom operations like setting defaults |
| | | 39 | | /// </summary> |
| | | 40 | | partial void CustomInit(); |
| | | 41 | | |
| | | 42 | | /// <summary> |
| | | 43 | | /// Gets or sets the job id. |
| | | 44 | | /// </summary> |
| | | 45 | | [JsonProperty(PropertyName = "Value")] |
| | 0 | 46 | | public IList<string> Value { get; set; } |
| | | 47 | | |
| | | 48 | | } |
| | | 49 | | } |