| | | 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 parsed stack entry |
| | | 18 | | /// </summary> |
| | | 19 | | public partial class EventsExceptionDetailsParsedStack |
| | | 20 | | { |
| | | 21 | | /// <summary> |
| | | 22 | | /// Initializes a new instance of the EventsExceptionDetailsParsedStack |
| | | 23 | | /// class. |
| | | 24 | | /// </summary> |
| | 394 | 25 | | public EventsExceptionDetailsParsedStack() |
| | | 26 | | { |
| | | 27 | | CustomInit(); |
| | 394 | 28 | | } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// Initializes a new instance of the EventsExceptionDetailsParsedStack |
| | | 32 | | /// class. |
| | | 33 | | /// </summary> |
| | | 34 | | /// <param name="assembly">The assembly of the stack entry</param> |
| | | 35 | | /// <param name="method">The method of the stack entry</param> |
| | | 36 | | /// <param name="level">The level of the stack entry</param> |
| | | 37 | | /// <param name="line">The line of the stack entry</param> |
| | 0 | 38 | | public EventsExceptionDetailsParsedStack(string assembly = default(string), string method = default(string), lon |
| | | 39 | | { |
| | 0 | 40 | | Assembly = assembly; |
| | 0 | 41 | | Method = method; |
| | 0 | 42 | | Level = level; |
| | 0 | 43 | | Line = line; |
| | | 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 | | /// Gets or sets the assembly of the stack entry |
| | | 54 | | /// </summary> |
| | | 55 | | [JsonProperty(PropertyName = "assembly")] |
| | 489 | 56 | | public string Assembly { get; set; } |
| | | 57 | | |
| | | 58 | | /// <summary> |
| | | 59 | | /// Gets or sets the method of the stack entry |
| | | 60 | | /// </summary> |
| | | 61 | | [JsonProperty(PropertyName = "method")] |
| | 489 | 62 | | public string Method { get; set; } |
| | | 63 | | |
| | | 64 | | /// <summary> |
| | | 65 | | /// Gets or sets the level of the stack entry |
| | | 66 | | /// </summary> |
| | | 67 | | [JsonProperty(PropertyName = "level")] |
| | 489 | 68 | | public long? Level { get; set; } |
| | | 69 | | |
| | | 70 | | /// <summary> |
| | | 71 | | /// Gets or sets the line of the stack entry |
| | | 72 | | /// </summary> |
| | | 73 | | [JsonProperty(PropertyName = "line")] |
| | 489 | 74 | | public long? Line { get; set; } |
| | | 75 | | |
| | | 76 | | } |
| | | 77 | | } |