Class ProblemDetails
ProblemDetails
Inheritance
System.Object
ProblemDetails
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class ProblemDetails : object
Constructors
| Improve this Doc View SourceProblemDetails(String, String, Nullable<Int32>, String, String)
Initializes a new instance of the ProblemDetails class.
Declaration
public ProblemDetails(string type = null, string title = null, int? status = null, string detail = null, string instance = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | type | type. |
System.String | title | title. |
System.Nullable<System.Int32> | status | status. |
System.String | detail | detail. |
System.String | instance | instance. |
Properties
| Improve this Doc View SourceDetail
Gets or Sets Detail
Declaration
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Extensions
Gets or Sets Extensions
Declaration
public Dictionary<string, object> Extensions { get; }
Property Value
Type | Description |
---|---|
Dictionary<System.String, System.Object> |
Instance
Gets or Sets Instance
Declaration
public string Instance { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Status
Gets or Sets Status
Declaration
public int? Status { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Title
Gets or Sets Title
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets or Sets Type
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |