@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
17 lines (16 loc) • 572 B
TypeScript
import BankAccount from "../../entities/bank-account.js";
import { IBankAccountParams } from "../../services/payment-gateway/abstract.js";
declare class BankAccountAddInput implements IBankAccountParams {
userId: string;
lastDigits: string;
holderName?: string | null;
bankName?: string | null;
bankAccountId?: string;
}
/**
* Add new bank account
*/
declare const add: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, BankAccountAddInput, Record<string, any>, {
entity: BankAccount;
}>;
export { add as default };