Example #1
0
 /// <summary>
 /// Gets a list of up to 250 of the order's fulfillments.
 /// </summary>
 /// <param name="orderId">The order id to which the fulfillments belong.</param>
 /// <param name="filter">Options for filtering the list.</param>
 /// <param name="cancellationToken">Cancellation Token</param>
 public virtual async Task <ListResult <Fulfillment> > ListAsync(long orderId, FulfillmentListFilter filter, CancellationToken cancellationToken = default)
 {
     return(await ListAsync(orderId, filter?.AsListFilter(), cancellationToken));
 }
 /// <summary>
 /// Gets a list of up to 250 of the order's fulfillments.
 /// </summary>
 /// <param name="orderId">The order id to which the fulfillments belong.</param>
 /// <param name="filter">Options for filtering the list.</param>
 public virtual async Task <ListResult <Fulfillment> > ListAsync(long orderId, FulfillmentListFilter filter)
 {
     return(await ListAsync(orderId, filter?.AsListFilter()));
 }