/** * This file was auto-generated by Fern from our API Definition. */ /** * Moneybird ledger account (chart of accounts) - API format * * Attributes: * rgs_code: Reference Grootboekschema (RGS) code - required for creation * name: Account name * account_type: Account type (revenue, expense, etc.) * account_id: Account identifier (optional, system accounts may not have this) */ export interface MoneybirdLedgerAccount { /** RGS code - required for creation, not returned by GET API */ rgs_code?: string; /** Account name */ name: string; /** Account type (revenue, expense, etc.) */ account_type: string; /** Account identifier (optional for system accounts) */ account_id?: string; }