GetPaymentIntentsSearchResponse constructor

const GetPaymentIntentsSearchResponse({
  1. required List<PaymentIntent> data,
  2. required bool hasMore,
  3. String? nextPage,
  4. int? totalCount,
  5. required String url,
})

SearchResult

Implementation

const GetPaymentIntentsSearchResponse({
  required this.data,
  required this.hasMore,
  this.nextPage,
  this.totalCount,
  required this.url,
});