adminBillingListPaymentMethods abstract method
- @GET.new('/admin/billing/users/{userId}/payment-methods')
- @Path.new('userId') required String userId,
List payment methods for a user.
Retrieve the Stripe payment methods associated with a user.
userId - The userId.
Implementation
@GET('/admin/billing/users/{userId}/payment-methods')
Future<AdminPaymentMethodListResponse> adminBillingListPaymentMethods({
@Path('userId') required String userId,
});