Class ApiErrorReportContext
Inheritance
ApiErrorReportContext
Assembly: Inttegro.dll
Syntax
public sealed record ApiErrorReportContext : IEquatable<ApiErrorReportContext>
Constructors
|
Edit this page
View Source
ApiErrorReportContext(string?, string?, string?)
Declaration
public ApiErrorReportContext(string? Type, string? Code, string? FixCode)
Parameters
Properties
|
Edit this page
View Source
Code
Declaration
[JsonPropertyName("code")]
public string? Code { get; init; }
Property Value
|
Edit this page
View Source
FixCode
Declaration
[JsonPropertyName("fixCode")]
public string? FixCode { get; init; }
Property Value
|
Edit this page
View Source
Type
Declaration
[JsonPropertyName("type")]
public string? Type { get; init; }
Property Value
Implements