Class CompilationErrorResponse
A compilation error from the execution backend. Describes the error and provides a stack trace. Can be caused by invalid syntax or invalid imports.
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudCode
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "CompilationErrorResponse")]
[Preserve]
public class CompilationErrorResponse
Constructors
CompilationErrorResponse(string, string, int, int, string, List<CompilationErrorResponseDetailsInner>)
Initializes a new instance of the Compilation
Declaration
[Preserve]
public CompilationErrorResponse(string type = "problems/compilation", string title = null, int status = 0, int code = 0, string detail = "Compilation Error", List<CompilationErrorResponseDetailsInner> details = null)
Parameters
Type | Name | Description |
---|---|---|
string | type | type (required) (default to "problems/compilation"). |
string | title | title (required). |
int | status | status (required). |
int | code | code (required). |
string | detail | detail (required) (default to "Compilation Error"). |
List<Compilation |
details | details (required). |
Properties
Code
Gets or Sets Code
Declaration
[DataMember(Name = "code", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Code { get; set; }
Property Value
Type | Description |
---|---|
int |
Detail
Gets or Sets Detail
Declaration
[DataMember(Name = "detail", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
string |
Details
Gets or Sets Details
Declaration
[DataMember(Name = "details", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<CompilationErrorResponseDetailsInner> Details { get; set; }
Property Value
Type | Description |
---|---|
List<Compilation |
Status
Gets or Sets Status
Declaration
[DataMember(Name = "status", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Status { get; set; }
Property Value
Type | Description |
---|---|
int |
Title
Gets or Sets Title
Declaration
[DataMember(Name = "title", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or Sets Type
Declaration
[DataMember(Name = "type", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |