| | | 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.ApplicationInsights.Query.Models |
| | | 12 | | { |
| | | 13 | | using Newtonsoft.Json; |
| | | 14 | | using System.Linq; |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// The browser timing information |
| | | 18 | | /// </summary> |
| | | 19 | | public partial class EventsBrowserTimingInfo |
| | | 20 | | { |
| | | 21 | | /// <summary> |
| | | 22 | | /// Initializes a new instance of the EventsBrowserTimingInfo class. |
| | | 23 | | /// </summary> |
| | 10 | 24 | | public EventsBrowserTimingInfo() |
| | | 25 | | { |
| | | 26 | | CustomInit(); |
| | 10 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> |
| | | 30 | | /// Initializes a new instance of the EventsBrowserTimingInfo class. |
| | | 31 | | /// </summary> |
| | | 32 | | /// <param name="urlPath">The path of the URL</param> |
| | | 33 | | /// <param name="urlHost">The host of the URL</param> |
| | | 34 | | /// <param name="name">The name of the page</param> |
| | | 35 | | /// <param name="url">The url of the page</param> |
| | | 36 | | /// <param name="totalDuration">The total duration of the load</param> |
| | | 37 | | /// <param name="performanceBucket">The performance bucket of the |
| | | 38 | | /// load</param> |
| | | 39 | | /// <param name="networkDuration">The network duration of the |
| | | 40 | | /// load</param> |
| | | 41 | | /// <param name="sendDuration">The send duration of the load</param> |
| | | 42 | | /// <param name="receiveDuration">The receive duration of the |
| | | 43 | | /// load</param> |
| | | 44 | | /// <param name="processingDuration">The processing duration of the |
| | | 45 | | /// load</param> |
| | 0 | 46 | | public EventsBrowserTimingInfo(string urlPath = default(string), string urlHost = default(string), string name = |
| | | 47 | | { |
| | 0 | 48 | | UrlPath = urlPath; |
| | 0 | 49 | | UrlHost = urlHost; |
| | 0 | 50 | | Name = name; |
| | 0 | 51 | | Url = url; |
| | 0 | 52 | | TotalDuration = totalDuration; |
| | 0 | 53 | | PerformanceBucket = performanceBucket; |
| | 0 | 54 | | NetworkDuration = networkDuration; |
| | 0 | 55 | | SendDuration = sendDuration; |
| | 0 | 56 | | ReceiveDuration = receiveDuration; |
| | 0 | 57 | | ProcessingDuration = processingDuration; |
| | | 58 | | CustomInit(); |
| | 0 | 59 | | } |
| | | 60 | | |
| | | 61 | | /// <summary> |
| | | 62 | | /// An initialization method that performs custom operations like setting defaults |
| | | 63 | | /// </summary> |
| | | 64 | | partial void CustomInit(); |
| | | 65 | | |
| | | 66 | | /// <summary> |
| | | 67 | | /// Gets or sets the path of the URL |
| | | 68 | | /// </summary> |
| | | 69 | | [JsonProperty(PropertyName = "urlPath")] |
| | 0 | 70 | | public string UrlPath { get; set; } |
| | | 71 | | |
| | | 72 | | /// <summary> |
| | | 73 | | /// Gets or sets the host of the URL |
| | | 74 | | /// </summary> |
| | | 75 | | [JsonProperty(PropertyName = "urlHost")] |
| | 0 | 76 | | public string UrlHost { get; set; } |
| | | 77 | | |
| | | 78 | | /// <summary> |
| | | 79 | | /// Gets or sets the name of the page |
| | | 80 | | /// </summary> |
| | | 81 | | [JsonProperty(PropertyName = "name")] |
| | 22 | 82 | | public string Name { get; set; } |
| | | 83 | | |
| | | 84 | | /// <summary> |
| | | 85 | | /// Gets or sets the url of the page |
| | | 86 | | /// </summary> |
| | | 87 | | [JsonProperty(PropertyName = "url")] |
| | 22 | 88 | | public string Url { get; set; } |
| | | 89 | | |
| | | 90 | | /// <summary> |
| | | 91 | | /// Gets or sets the total duration of the load |
| | | 92 | | /// </summary> |
| | | 93 | | [JsonProperty(PropertyName = "totalDuration")] |
| | 22 | 94 | | public long? TotalDuration { get; set; } |
| | | 95 | | |
| | | 96 | | /// <summary> |
| | | 97 | | /// Gets or sets the performance bucket of the load |
| | | 98 | | /// </summary> |
| | | 99 | | [JsonProperty(PropertyName = "performanceBucket")] |
| | 22 | 100 | | public string PerformanceBucket { get; set; } |
| | | 101 | | |
| | | 102 | | /// <summary> |
| | | 103 | | /// Gets or sets the network duration of the load |
| | | 104 | | /// </summary> |
| | | 105 | | [JsonProperty(PropertyName = "networkDuration")] |
| | 22 | 106 | | public long? NetworkDuration { get; set; } |
| | | 107 | | |
| | | 108 | | /// <summary> |
| | | 109 | | /// Gets or sets the send duration of the load |
| | | 110 | | /// </summary> |
| | | 111 | | [JsonProperty(PropertyName = "sendDuration")] |
| | 22 | 112 | | public long? SendDuration { get; set; } |
| | | 113 | | |
| | | 114 | | /// <summary> |
| | | 115 | | /// Gets or sets the receive duration of the load |
| | | 116 | | /// </summary> |
| | | 117 | | [JsonProperty(PropertyName = "receiveDuration")] |
| | 22 | 118 | | public long? ReceiveDuration { get; set; } |
| | | 119 | | |
| | | 120 | | /// <summary> |
| | | 121 | | /// Gets or sets the processing duration of the load |
| | | 122 | | /// </summary> |
| | | 123 | | [JsonProperty(PropertyName = "processingDuration")] |
| | 22 | 124 | | public long? ProcessingDuration { get; set; } |
| | | 125 | | |
| | | 126 | | } |
| | | 127 | | } |