adminBillingListPayments abstract method

  1. @GET.new('/admin/billing/users/{userId}/payments')
Future<AdminPaymentListResponse> adminBillingListPayments({
  1. @Path.new('userId') required String userId,
})

List payments for a user.

Retrieve the payment history stored for a user.

userId - The userId.

Implementation

@GET('/admin/billing/users/{userId}/payments')
Future<AdminPaymentListResponse> adminBillingListPayments({
  @Path('userId') required String userId,
});