UNPKG

stripe

Version:
26 lines (25 loc) 888 B
"use strict"; // File generated from our OpenAPI spec Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentMethodConfigurations = void 0; const StripeResource_js_1 = require("../StripeResource.js"); const stripeMethod = StripeResource_js_1.StripeResource.method; exports.PaymentMethodConfigurations = StripeResource_js_1.StripeResource.extend({ create: stripeMethod({ method: 'POST', fullPath: '/v1/payment_method_configurations', }), retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/payment_method_configurations/{configuration}', }), update: stripeMethod({ method: 'POST', fullPath: '/v1/payment_method_configurations/{configuration}', }), list: stripeMethod({ method: 'GET', fullPath: '/v1/payment_method_configurations', methodType: 'list', }), });