| | 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 | | /// A page view result |
| | 18 | | /// </summary> |
| | 19 | | [Newtonsoft.Json.JsonObject("pageView")] |
| | 20 | | public partial class EventsPageViewResult : EventsResultData |
| | 21 | | { |
| | 22 | | /// <summary> |
| | 23 | | /// Initializes a new instance of the EventsPageViewResult class. |
| | 24 | | /// </summary> |
| 13 | 25 | | public EventsPageViewResult() |
| | 26 | | { |
| | 27 | | CustomInit(); |
| 13 | 28 | | } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Initializes a new instance of the EventsPageViewResult class. |
| | 32 | | /// </summary> |
| | 33 | | /// <param name="id">The unique ID for this event.</param> |
| | 34 | | /// <param name="count">Count of the event</param> |
| | 35 | | /// <param name="timestamp">Timestamp of the event</param> |
| | 36 | | /// <param name="customDimensions">Custom dimensions of the |
| | 37 | | /// event</param> |
| | 38 | | /// <param name="customMeasurements">Custom measurements of the |
| | 39 | | /// event</param> |
| | 40 | | /// <param name="operation">Operation info of the event</param> |
| | 41 | | /// <param name="session">Session info of the event</param> |
| | 42 | | /// <param name="user">User info of the event</param> |
| | 43 | | /// <param name="cloud">Cloud info of the event</param> |
| | 44 | | /// <param name="ai">AI info of the event</param> |
| | 45 | | /// <param name="application">Application info of the event</param> |
| | 46 | | /// <param name="client">Client info of the event</param> |
| | 47 | | public EventsPageViewResult(string id = default(string), long? count = default(long?), System.DateTime? timestam |
| 0 | 48 | | : base(id, count, timestamp, customDimensions, customMeasurements, operation, session, user, cloud, ai, appl |
| | 49 | | { |
| 0 | 50 | | PageView = pageView; |
| | 51 | | CustomInit(); |
| 0 | 52 | | } |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// An initialization method that performs custom operations like setting defaults |
| | 56 | | /// </summary> |
| | 57 | | partial void CustomInit(); |
| | 58 | |
|
| | 59 | | /// <summary> |
| | 60 | | /// </summary> |
| | 61 | | [JsonProperty(PropertyName = "pageView")] |
| 39 | 62 | | public EventsPageViewInfo PageView { get; set; } |
| | 63 | |
|
| | 64 | | } |
| | 65 | | } |