ResultSet.types

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

An array of the return types for ResultSet.results.

The ResultSet.types array values correspond with the ResultSet.columns array values.

Type

string[] (read-only)

Module

N/query Module

Parent Object

query.ResultSet

Sibling Object Members

ResultSet Object Members

Since

2018.1

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/query Module Script Samples.

            // Add additional code
...
var myCustomerQuery = query.create({ type: query.Type.CUSTOMER
}); myCustomerQuery.columns = [ myCustomerQuery.createColumn({ fieldId: 'entityid' }), myCustomerQuery.createColumn({ fieldId: 'email' })
]; var queryResultSet = myCustomerQuery.run(); var theTypes = queryResultSet.types;
...
// Add additional code 

          

Related Topics

query.Query
N/query Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices