/// <summary>
 /// Retrieves a list of all payouts ordered by payout date, with the most recent being first.
 /// </summary>
 /// <param name="filter">Options for filtering the result.</param>
 /// <param name="cancellationToken">Cancellation Token</param>
 public virtual async Task <ListResult <ShopifyPaymentsPayout> > ListPayoutsAsync(ShopifyPaymentsPayoutListFilter filter = null, CancellationToken cancellationToken = default)
 {
     return(await ListPayoutsAsync(filter?.AsListFilter(), cancellationToken));
 }
 /// <summary>
 /// Retrieves a list of all payouts ordered by payout date, with the most recent being first.
 /// </summary>
 /// <param name="filter">Options for filtering the result.</param>
 public virtual async Task <ListResult <ShopifyPaymentsPayout> > ListPayoutsAsync(ShopifyPaymentsPayoutListFilter filter = null)
 {
     return(await ListPayoutsAsync(filter?.AsListFilter()));
 }