24 lines
553 B
TypeScript
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;
|
|
}
|