adminBillingListPaymentMethods abstract method

  1. @GET.new('/admin/billing/users/{userId}/payment-methods')
Future<AdminPaymentMethodListResponse> adminBillingListPaymentMethods({
  1. @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,
});