Holds request fields that are necessary for retrieving seller's orders.
- FromDate, ISO 8601 DateTime.
Used to retrieve orders that are created and/or updated after this date. This field can be used together with ToDate to retrive orders within a certain time range.
This field is optional, if it is not used send NULL. - ToDate, ISO 8601 DateTime.
Used to retrieve orders that are created and/or updated before this date. This field can be used together with FromDate to retrive orders within a certain time range.
This field is optional, if it is not used send NULL. - QueryDateMode, Determines what date on the orders the FromDate and ToDate parameters should target. See SellerOrderQueryDateMode for more details.
- CreatedDate: Specifies that the FromDate and ToDate parameters will filter only on the orders' created date.
- LastUpdatedDate: Specifies that the FromDate and ToDate parameters will filter only on the orders' last updated date.
Note, this will also return orders created in the specified date interval since when a order is created
the created date and last updated date is the same.