Newer Version Available

This content describes an older version of this product. View Latest

DeployDetails

A complex type that contains detailed XML for any compile errors reported in the asynchronous request defined by a ContainerAsyncRequest object. Replaces the JSON field CompilerErrors in Tooling API version 31.0 and later.

Fields

Field Details
componentFailures
Type
string
Description
The line number, component name and a short description for any compile errors. For example:
1<DeployDetails>
2    <componentFailures>
3        <lineNumber>5</lineNumber>
4        <fullName>myApex</fileName>
5        <problem>invalid name 'abc'</problem>
6    </componentFailures>
7    <componentFailures>
8        <lineNumber>10</lineNumber>
9        <fullName>myApex2</fileName>
10        <problem>invalid type 'hello'</problem>
11    </componentFailures>
12</DeployDetails>