pub struct Query {
pub query_id: String,
pub query: String,
pub created_time: String,
pub processing_status: ProcessingStatus,
pub processing_start_time: Option<String>,
pub processing_end_time: Option<String>,
pub data_document_id: Option<String>,
pub error_document_id: Option<String>,
pub pagination: Option<Box<QueryPagination>>,
}Expand description
Query : Detailed information about the query.
Fields§
§query_id: StringThe query identifier. This identifier is unique only in combination with a selling partner account ID.
query: StringThe submitted query.
created_time: StringThe date and time when the query was created, in ISO 8601 date time format.
processing_status: ProcessingStatusThe processing status of the query.
processing_start_time: Option<String>The date and time when the query processing started, in ISO 8601 date time format.
processing_end_time: Option<String>The date and time when the query processing completed, in ISO 8601 date time format.
data_document_id: Option<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.
error_document_id: Option<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.
pagination: Option<Box<QueryPagination>>