Holds request fields that are necessary for retrieving seller's transactions.
- MinTransactionDate, Used to retrieve transactions that are created or modified after this date. This field can be used together with MaxTransactionDate to retrive transactions within a certain time range.
This field is optional, if it is not used either send NULL or a DateTime <= DateTime.MinValue (0001-01-01 00:00:00). - MaxTransactionDate, Used to retrieve transactions that are created or modified before this date. This field can be used together with MinTransactionDate to retrive transactions within a certain time range.
This field is optional, if it is not used either send NULL or a DateTime >= DateTime.MaxValue (9999-12-31 00:00:00) if you are not using this field. - Filter, Enables you to apply filter on transaction you want to retrieve, for example if you only want to retrieve new transctions and not updated transactions. See TransactionFilter for more details.