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; }