adminBillingListPayments abstract method
- @GET.new('/admin/billing/users/{userId}/payments')
- @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,
});