Files
psp_panel/src/app/modules/inventories/models/posAccounts.io.ts
T

24 lines
553 B
TypeScript

import { IInventoryBankAccountSummary } from './types';
export interface IInventoryPosAccountRawResponse {
id: number;
name: string;
code: string;
description: string;
bankAccountId: number;
inventoryId: number;
createdAt: string;
updatedAt: string;
deletedAt: null;
bankAccount: IInventoryBankAccountSummary;
}
export interface IInventoryPosAccountResponse extends IInventoryPosAccountRawResponse {}
export interface IInventoryPosAccountRequest {
name: string;
code: string;
description: string;
bankAccountId: number;
}