| | | 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.Collections; |
| | | 15 | | using System.Collections.Generic; |
| | | 16 | | using System.Linq; |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Exception details |
| | | 20 | | /// </summary> |
| | | 21 | | public partial class EventsExceptionDetail |
| | | 22 | | { |
| | | 23 | | /// <summary> |
| | | 24 | | /// Initializes a new instance of the EventsExceptionDetail class. |
| | | 25 | | /// </summary> |
| | 17 | 26 | | public EventsExceptionDetail() |
| | | 27 | | { |
| | | 28 | | CustomInit(); |
| | 17 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> |
| | | 32 | | /// Initializes a new instance of the EventsExceptionDetail class. |
| | | 33 | | /// </summary> |
| | | 34 | | /// <param name="severityLevel">The severity level of the exception |
| | | 35 | | /// detail</param> |
| | | 36 | | /// <param name="outerId">The outer ID of the exception detail</param> |
| | | 37 | | /// <param name="message">The message of the exception detail</param> |
| | | 38 | | /// <param name="type">The type of the exception detail</param> |
| | | 39 | | /// <param name="id">The ID of the exception detail</param> |
| | | 40 | | /// <param name="parsedStack">The parsed stack</param> |
| | 0 | 41 | | public EventsExceptionDetail(string severityLevel = default(string), string outerId = default(string), string me |
| | | 42 | | { |
| | 0 | 43 | | SeverityLevel = severityLevel; |
| | 0 | 44 | | OuterId = outerId; |
| | 0 | 45 | | Message = message; |
| | 0 | 46 | | Type = type; |
| | 0 | 47 | | Id = id; |
| | 0 | 48 | | ParsedStack = parsedStack; |
| | | 49 | | CustomInit(); |
| | 0 | 50 | | } |
| | | 51 | | |
| | | 52 | | /// <summary> |
| | | 53 | | /// An initialization method that performs custom operations like setting defaults |
| | | 54 | | /// </summary> |
| | | 55 | | partial void CustomInit(); |
| | | 56 | | |
| | | 57 | | /// <summary> |
| | | 58 | | /// Gets or sets the severity level of the exception detail |
| | | 59 | | /// </summary> |
| | | 60 | | [JsonProperty(PropertyName = "severityLevel")] |
| | 21 | 61 | | public string SeverityLevel { get; set; } |
| | | 62 | | |
| | | 63 | | /// <summary> |
| | | 64 | | /// Gets or sets the outer ID of the exception detail |
| | | 65 | | /// </summary> |
| | | 66 | | [JsonProperty(PropertyName = "outerId")] |
| | 32 | 67 | | public string OuterId { get; set; } |
| | | 68 | | |
| | | 69 | | /// <summary> |
| | | 70 | | /// Gets or sets the message of the exception detail |
| | | 71 | | /// </summary> |
| | | 72 | | [JsonProperty(PropertyName = "message")] |
| | 32 | 73 | | public string Message { get; set; } |
| | | 74 | | |
| | | 75 | | /// <summary> |
| | | 76 | | /// Gets or sets the type of the exception detail |
| | | 77 | | /// </summary> |
| | | 78 | | [JsonProperty(PropertyName = "type")] |
| | 32 | 79 | | public string Type { get; set; } |
| | | 80 | | |
| | | 81 | | /// <summary> |
| | | 82 | | /// Gets or sets the ID of the exception detail |
| | | 83 | | /// </summary> |
| | | 84 | | [JsonProperty(PropertyName = "id")] |
| | 32 | 85 | | public string Id { get; set; } |
| | | 86 | | |
| | | 87 | | /// <summary> |
| | | 88 | | /// Gets or sets the parsed stack |
| | | 89 | | /// </summary> |
| | | 90 | | [JsonProperty(PropertyName = "parsedStack")] |
| | 104 | 91 | | public IList<EventsExceptionDetailsParsedStack> ParsedStack { get; set; } |
| | | 92 | | |
| | | 93 | | } |
| | | 94 | | } |