22 lines
740 B
JavaScript
22 lines
740 B
JavaScript
// File generated from our OpenAPI spec
|
|
import { StripeResource } from '../../../StripeResource.js';
|
|
const stripeMethod = StripeResource.method;
|
|
export const Cards = StripeResource.extend({
|
|
deliverCard: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/issuing/cards/{card}/shipping/deliver',
|
|
}),
|
|
failCard: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/issuing/cards/{card}/shipping/fail',
|
|
}),
|
|
returnCard: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/issuing/cards/{card}/shipping/return',
|
|
}),
|
|
shipCard: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/issuing/cards/{card}/shipping/ship',
|
|
}),
|
|
});
|