18 lines
626 B
JavaScript
18 lines
626 B
JavaScript
// File generated from our OpenAPI spec
|
|
import { StripeResource } from '../../../StripeResource.js';
|
|
const stripeMethod = StripeResource.method;
|
|
export const InboundTransfers = StripeResource.extend({
|
|
fail: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/treasury/inbound_transfers/{id}/fail',
|
|
}),
|
|
returnInboundTransfer: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/treasury/inbound_transfers/{id}/return',
|
|
}),
|
|
succeed: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/test_helpers/treasury/inbound_transfers/{id}/succeed',
|
|
}),
|
|
});
|