Get Account
This commit is contained in:
@@ -37,3 +37,28 @@ export interface ChartOfAccounts {
|
||||
page: number
|
||||
total: number
|
||||
}
|
||||
|
||||
export interface Account {
|
||||
id: string
|
||||
organization_id: string
|
||||
outlet_id: string
|
||||
chart_of_account_id: string
|
||||
name: string
|
||||
number: string
|
||||
account_type: string
|
||||
opening_balance: number
|
||||
current_balance: number
|
||||
description: string
|
||||
is_active: true
|
||||
is_system: false
|
||||
created_at: string
|
||||
updated_at: string
|
||||
chart_of_account: ChartOfAccount
|
||||
}
|
||||
|
||||
export interface Accounts {
|
||||
data: Account[]
|
||||
limit: number
|
||||
page: number
|
||||
total: number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user