| | | 1 | | // <auto-generated> |
| | | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | | 4 | | // license information. |
| | | 5 | | // |
| | | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | | 8 | | // regenerated. |
| | | 9 | | // </auto-generated> |
| | | 10 | | |
| | | 11 | | namespace Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models |
| | | 12 | | { |
| | | 13 | | using Newtonsoft.Json; |
| | | 14 | | using System.Collections; |
| | | 15 | | using System.Collections.Generic; |
| | | 16 | | using System.Linq; |
| | | 17 | | |
| | | 18 | | public partial class PredictionQueryToken |
| | | 19 | | { |
| | | 20 | | /// <summary> |
| | | 21 | | /// Initializes a new instance of the PredictionQueryToken class. |
| | | 22 | | /// </summary> |
| | 8 | 23 | | public PredictionQueryToken() |
| | | 24 | | { |
| | | 25 | | CustomInit(); |
| | 8 | 26 | | } |
| | | 27 | | |
| | | 28 | | /// <summary> |
| | | 29 | | /// Initializes a new instance of the PredictionQueryToken class. |
| | | 30 | | /// </summary> |
| | | 31 | | /// <param name="orderBy">Possible values include: 'Newest', 'Oldest', |
| | | 32 | | /// 'Suggested'</param> |
| | 0 | 33 | | public PredictionQueryToken(string session = default(string), string continuation = default(string), int maxCoun |
| | | 34 | | { |
| | 0 | 35 | | Session = session; |
| | 0 | 36 | | Continuation = continuation; |
| | 0 | 37 | | MaxCount = maxCount; |
| | 0 | 38 | | OrderBy = orderBy; |
| | 0 | 39 | | Tags = tags; |
| | 0 | 40 | | IterationId = iterationId; |
| | 0 | 41 | | StartTime = startTime; |
| | 0 | 42 | | EndTime = endTime; |
| | 0 | 43 | | Application = application; |
| | | 44 | | CustomInit(); |
| | 0 | 45 | | } |
| | | 46 | | |
| | | 47 | | /// <summary> |
| | | 48 | | /// An initialization method that performs custom operations like setting defaults |
| | | 49 | | /// </summary> |
| | | 50 | | partial void CustomInit(); |
| | | 51 | | |
| | | 52 | | /// <summary> |
| | | 53 | | /// </summary> |
| | | 54 | | [JsonProperty(PropertyName = "session")] |
| | 8 | 55 | | public string Session { get; set; } |
| | | 56 | | |
| | | 57 | | /// <summary> |
| | | 58 | | /// </summary> |
| | | 59 | | [JsonProperty(PropertyName = "continuation")] |
| | 0 | 60 | | public string Continuation { get; set; } |
| | | 61 | | |
| | | 62 | | /// <summary> |
| | | 63 | | /// </summary> |
| | | 64 | | [JsonProperty(PropertyName = "maxCount")] |
| | 8 | 65 | | public int MaxCount { get; set; } |
| | | 66 | | |
| | | 67 | | /// <summary> |
| | | 68 | | /// Gets or sets possible values include: 'Newest', 'Oldest', |
| | | 69 | | /// 'Suggested' |
| | | 70 | | /// </summary> |
| | | 71 | | [JsonProperty(PropertyName = "orderBy")] |
| | 12 | 72 | | public string OrderBy { get; set; } |
| | | 73 | | |
| | | 74 | | /// <summary> |
| | | 75 | | /// </summary> |
| | | 76 | | [JsonProperty(PropertyName = "tags")] |
| | 0 | 77 | | public IList<PredictionQueryTag> Tags { get; set; } |
| | | 78 | | |
| | | 79 | | /// <summary> |
| | | 80 | | /// </summary> |
| | | 81 | | [JsonProperty(PropertyName = "iterationId")] |
| | 0 | 82 | | public System.Guid? IterationId { get; set; } |
| | | 83 | | |
| | | 84 | | /// <summary> |
| | | 85 | | /// </summary> |
| | | 86 | | [JsonProperty(PropertyName = "startTime")] |
| | 0 | 87 | | public System.DateTime? StartTime { get; set; } |
| | | 88 | | |
| | | 89 | | /// <summary> |
| | | 90 | | /// </summary> |
| | | 91 | | [JsonProperty(PropertyName = "endTime")] |
| | 0 | 92 | | public System.DateTime? EndTime { get; set; } |
| | | 93 | | |
| | | 94 | | /// <summary> |
| | | 95 | | /// </summary> |
| | | 96 | | [JsonProperty(PropertyName = "application")] |
| | 0 | 97 | | public string Application { get; set; } |
| | | 98 | | |
| | | 99 | | } |
| | | 100 | | } |