113 lines
3.8 KiB
JavaScript
113 lines
3.8 KiB
JavaScript
// File generated from our OpenAPI spec
|
|
import { StripeResource } from '../StripeResource.js';
|
|
const stripeMethod = StripeResource.method;
|
|
export const Customers = StripeResource.extend({
|
|
create: stripeMethod({ method: 'POST', fullPath: '/v1/customers' }),
|
|
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/customers/{customer}' }),
|
|
update: stripeMethod({ method: 'POST', fullPath: '/v1/customers/{customer}' }),
|
|
list: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers',
|
|
methodType: 'list',
|
|
}),
|
|
del: stripeMethod({ method: 'DELETE', fullPath: '/v1/customers/{customer}' }),
|
|
createBalanceTransaction: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/balance_transactions',
|
|
}),
|
|
createFundingInstructions: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/funding_instructions',
|
|
}),
|
|
createSource: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/sources',
|
|
}),
|
|
createTaxId: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/tax_ids',
|
|
}),
|
|
deleteDiscount: stripeMethod({
|
|
method: 'DELETE',
|
|
fullPath: '/v1/customers/{customer}/discount',
|
|
}),
|
|
deleteSource: stripeMethod({
|
|
method: 'DELETE',
|
|
fullPath: '/v1/customers/{customer}/sources/{id}',
|
|
}),
|
|
deleteTaxId: stripeMethod({
|
|
method: 'DELETE',
|
|
fullPath: '/v1/customers/{customer}/tax_ids/{id}',
|
|
}),
|
|
listBalanceTransactions: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/balance_transactions',
|
|
methodType: 'list',
|
|
}),
|
|
listCashBalanceTransactions: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/cash_balance_transactions',
|
|
methodType: 'list',
|
|
}),
|
|
listPaymentMethods: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/payment_methods',
|
|
methodType: 'list',
|
|
}),
|
|
listSources: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/sources',
|
|
methodType: 'list',
|
|
}),
|
|
listTaxIds: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/tax_ids',
|
|
methodType: 'list',
|
|
}),
|
|
retrieveBalanceTransaction: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/balance_transactions/{transaction}',
|
|
}),
|
|
retrieveCashBalance: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/cash_balance',
|
|
}),
|
|
retrieveCashBalanceTransaction: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/cash_balance_transactions/{transaction}',
|
|
}),
|
|
retrievePaymentMethod: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/payment_methods/{payment_method}',
|
|
}),
|
|
retrieveSource: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/sources/{id}',
|
|
}),
|
|
retrieveTaxId: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/{customer}/tax_ids/{id}',
|
|
}),
|
|
search: stripeMethod({
|
|
method: 'GET',
|
|
fullPath: '/v1/customers/search',
|
|
methodType: 'search',
|
|
}),
|
|
updateBalanceTransaction: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/balance_transactions/{transaction}',
|
|
}),
|
|
updateCashBalance: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/cash_balance',
|
|
}),
|
|
updateSource: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/sources/{id}',
|
|
}),
|
|
verifySource: stripeMethod({
|
|
method: 'POST',
|
|
fullPath: '/v1/customers/{customer}/sources/{id}/verify',
|
|
}),
|
|
});
|