ListPaymentInvoicesRequest constructor

ListPaymentInvoicesRequest({
  1. Int64? limit,
  2. List<int>? offset,
})

Implementation

factory ListPaymentInvoicesRequest({
  $fixnum.Int64? limit,
  $core.List<$core.int>? offset,
}) {
  final _result = create();
  if (limit != null) {
    _result.limit = limit;
  }
  if (offset != null) {
    _result.offset = offset;
  }
  return _result;
}