mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-41): create Bank type
This commit is contained in:
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
import { BaseMetadata } from '@/types/api/api-general';
|
||||
|
||||
export type BaseBank = {
|
||||
id: number;
|
||||
name: string;
|
||||
alias: string;
|
||||
owner?: string;
|
||||
account_number: string;
|
||||
};
|
||||
|
||||
export type Bank = BaseMetadata & BaseBank;
|
||||
|
||||
export type CreateBankPayload = {
|
||||
name: string;
|
||||
alias: string;
|
||||
account_number: string;
|
||||
owner?: string;
|
||||
};
|
||||
|
||||
export type UpdateBankPayload = CreateBankPayload;
|
||||
Reference in New Issue
Block a user