Class AxiosInvocationErrorResponseDetails
AxiosInvocationErrorResponseDetails
Inherited Members
Namespace: Unity.Services.Apis.CloudCode
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "AxiosInvocationErrorResponseDetails")]
[Preserve]
public class AxiosInvocationErrorResponseDetails
Constructors
AxiosInvocationErrorResponseDetails(string, string, AxiosInvocationErrorResponseRequest, AxiosInvocationErrorResponseResponse)
Initializes a new instance of the Axios
Declaration
[Preserve]
public AxiosInvocationErrorResponseDetails(string name = null, string message = null, AxiosInvocationErrorResponseRequest request = null, AxiosInvocationErrorResponseResponse response = null)
Parameters
Type | Name | Description |
---|---|---|
string | name | name (required). |
string | message | message (required). |
Axios |
request | request (required). |
Axios |
response | response (required). |
Properties
Message
Gets or Sets Message
Declaration
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Request
Gets or Sets Request
Declaration
[DataMember(Name = "request", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public AxiosInvocationErrorResponseRequest Request { get; set; }
Property Value
Type | Description |
---|---|
Axios |
Response
Gets or Sets Response
Declaration
[DataMember(Name = "response", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public AxiosInvocationErrorResponseResponse Response { get; set; }
Property Value
Type | Description |
---|---|
Axios |