DataObject
DataObject class
Represents the description of a requested object.
Namespace: LOOP
Package: Nintex DocGen for Salesforce
Syntax
global class DataObject
The DataObject class exposes the following members.
Constructors
Member name | Description |
---|---|
DataObject | Creates an instance of the DataObject class, using the specified name and list of fields. |
Properties
Member name | Description |
---|---|
DataObject.fields property | The list of fields defined for the object represented by the DataObject. |
DataObject.name property | The name of the object represented by the DataObject. |
Remarks
The class describes an object requested by an implementation of the describeObjects or getGlobalDescribe methods from the IApexDataSource interface.
For a given object, all of the fields required by an implementation of the query method of the IApexDataSource interface must be defined in the fields property of the corresponding DataObject.
This class is defined within the ExternalData class.
DataObject constructor
Creates an instance of the DataObject class, using the specified name and list of fields.
Namespace: LOOP
Package: Nintex DocGen for Salesforce
Syntax
DataObject(String objectName, List<FieldInfo> fields)
Parameters
objectName
Type: String
The name of the object represented by the DataObject.
fields
Type: List<FieldInfo>
The list of fields defined for the object represented by the DataObject.
DataObject properties
The DataObject class exposes the following members.
Properties
Member name | Description |
---|---|
DataObject.fields property | The list of fields defined for the object represented by the DataObject. |
DataObject.name property | The name of the object represented by the DataObject. |
DataObject.fields property
The list of fields defined for the object represented by the DataObject.
Namespace: LOOP
Package: Nintex DocGen for Salesforce
Syntax
List<FieldInfo> fields
Property Value
Type: List<FieldInfo>
A list of FieldInfo objects, each of which represents a field defined for the object represented by the DataObject.
DataObject.name property
The name of the object represented by the DataObject.
Namespace: LOOP
Package: Nintex DocGen for Salesforce
Syntax
String name
Property Value
Type: String
The name of the object represented by the DataObject.