listtransactions method

Future<OrderreportsListTransactionsResponse> listtransactions(
  1. String merchantId,
  2. String disbursementId, {
  3. int? maxResults,
  4. String? pageToken,
  5. String? transactionEndDate,
  6. String? transactionStartDate,
  7. String? $fields,
})

Retrieves a list of transactions for a disbursement from your Merchant Center account.

Request parameters:

merchantId - The ID of the account that manages the order. This cannot be a multi-client account.

disbursementId - The Google-provided ID of the disbursement (found in Wallet).

maxResults - The maximum number of disbursements to return in the response, used for paging.

pageToken - The token returned by the previous request.

transactionEndDate - The last date in which transaction occurred. In ISO 8601 format. Default: current date.

transactionStartDate - The first date in which transaction occurred. In ISO 8601 format.

$fields - Selector specifying which fields to include in a partial response.

Completes with a OrderreportsListTransactionsResponse.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<OrderreportsListTransactionsResponse> listtransactions(
  core.String merchantId,
  core.String disbursementId, {
  core.int? maxResults,
  core.String? pageToken,
  core.String? transactionEndDate,
  core.String? transactionStartDate,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (maxResults != null) 'maxResults': ['${maxResults}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if (transactionEndDate != null)
      'transactionEndDate': [transactionEndDate],
    if (transactionStartDate != null)
      'transactionStartDate': [transactionStartDate],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = commons.escapeVariable('$merchantId') +
      '/orderreports/disbursements/' +
      commons.escapeVariable('$disbursementId') +
      '/transactions';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return OrderreportsListTransactionsResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}