| | | 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 | | /// Image Id properties. |
| | | 16 | | /// </summary> |
| | | 17 | | public partial class ImageIds |
| | | 18 | | { |
| | | 19 | | /// <summary> |
| | | 20 | | /// Initializes a new instance of the ImageIds class. |
| | | 21 | | /// </summary> |
| | 0 | 22 | | public ImageIds() |
| | | 23 | | { |
| | | 24 | | CustomInit(); |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// Initializes a new instance of the ImageIds class. |
| | | 29 | | /// </summary> |
| | | 30 | | /// <param name="contentSource">Source of the content.</param> |
| | | 31 | | /// <param name="contentIds">Id of the contents.</param> |
| | | 32 | | /// <param name="status">Get Image status.</param> |
| | | 33 | | /// <param name="trackingId">Tracking Id.</param> |
| | 0 | 34 | | public ImageIds(string contentSource = default(string), IList<int?> contentIds = default(IList<int?>), Status st |
| | | 35 | | { |
| | 0 | 36 | | ContentSource = contentSource; |
| | 0 | 37 | | ContentIds = contentIds; |
| | 0 | 38 | | Status = status; |
| | 0 | 39 | | TrackingId = trackingId; |
| | | 40 | | CustomInit(); |
| | 0 | 41 | | } |
| | | 42 | | |
| | | 43 | | /// <summary> |
| | | 44 | | /// An initialization method that performs custom operations like setting defaults |
| | | 45 | | /// </summary> |
| | | 46 | | partial void CustomInit(); |
| | | 47 | | |
| | | 48 | | /// <summary> |
| | | 49 | | /// Gets or sets source of the content. |
| | | 50 | | /// </summary> |
| | | 51 | | [JsonProperty(PropertyName = "ContentSource")] |
| | 0 | 52 | | public string ContentSource { get; set; } |
| | | 53 | | |
| | | 54 | | /// <summary> |
| | | 55 | | /// Gets or sets id of the contents. |
| | | 56 | | /// </summary> |
| | | 57 | | [JsonProperty(PropertyName = "ContentIds")] |
| | 0 | 58 | | public IList<int?> ContentIds { get; set; } |
| | | 59 | | |
| | | 60 | | /// <summary> |
| | | 61 | | /// Gets or sets get Image status. |
| | | 62 | | /// </summary> |
| | | 63 | | [JsonProperty(PropertyName = "Status")] |
| | 0 | 64 | | public Status Status { get; set; } |
| | | 65 | | |
| | | 66 | | /// <summary> |
| | | 67 | | /// Gets or sets tracking Id. |
| | | 68 | | /// </summary> |
| | | 69 | | [JsonProperty(PropertyName = "TrackingId")] |
| | 0 | 70 | | public string TrackingId { get; set; } |
| | | 71 | | |
| | | 72 | | } |
| | | 73 | | } |