Detailed information about the query.

Query

interface Query {
    createdTime: string;
    dataDocumentId?: string;
    errorDocumentId?: string;
    pagination?: QueryPagination;
    processingEndTime?: string;
    processingStartTime?: string;
    processingStatus: QueryProcessingStatusEnum;
    query: string;
    queryId: string;
}

Properties

createdTime: string

The date and time when the query was created, in ISO 8601 date time format.

Query

dataDocumentId?: string

The data document identifier. This identifier is only present when there is data available as a result of the query. This identifier is unique only in combination with a selling partner account ID. Pass this identifier into the getDocument operation to get the information required to retrieve the data document's contents.

Query

errorDocumentId?: string

The error document identifier. This identifier is only present when an error occurs during query processing. This identifier is unique only in combination with a selling partner account ID. Pass this identifier into the getDocument operation to get the information required to retrieve the error document's contents.

Query

pagination?: QueryPagination

Query

processingEndTime?: string

The date and time when the query processing completed, in ISO 8601 date time format.

Query

processingStartTime?: string

The date and time when the query processing started, in ISO 8601 date time format.

Query

processingStatus: QueryProcessingStatusEnum

The processing status of the query.

Query

query: string

The submitted query.

Query

queryId: string

The query identifier. This identifier is unique only in combination with a selling partner account ID.

Query