Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

SearchResult Class

Contains the contract of search results in tabular format for either the object-based or text-based search.

Namespace

id_verification

SearchResult Constructors

The following are constructors for SearchResult.

SearchResult(searchResultHeaders, searchResultRows)

Creates an instance of the SearchResult class with the specified parameter values.

Signature

public SearchResult(List<id_verification.SearchResultHeader> searchResultHeaders, List<id_verification.SearchResultRow> searchResultRows)

1id_verification.SearchResult, newinstance, [List<id_verification.SearchResultHeader>, List<id_verification.SearchResultRow>], id_verification.SearchResult

Parameters

searchResultHeaders
Type: List<id_verification.SearchResultHeader>
Represents the search result header field list that contains the metadata information of the columns that are part of the search result.
searchResultRows
Type: List<id_verification.SearchResultRow>
Represents the search result row field list that contains the column values for a specific row.

SearchResult()

Creates an instance of the SearchResult class.

Signature

public SearchResult()

1id_verification.SearchResult, newinstance, [], id_verification.SearchResult

SearchResult Properties

The following are properties for SearchResult.

searchResultHeaders

Represents the search result header field list that contains the metadata information of the columns that are part of the search result.

Signature

public List<id_verification.SearchResultHeader> searchResultHeaders {get; set;}

1id_verification.SearchResult, searchResultHeaders

Property Value

Type: List<id_verification.SearchResultHeader>

searchResultRows

Represents the search result row field list that contains the column values for a specific row.

Signature

public List<id_verification.SearchResultRow> searchResultRows {get; set;}

1id_verification.SearchResult, searchResultRows

Property Value

Type: List<id_verification.SearchResultRow>