import { IdentityDto } from './../shared/identity.dto'; import { EntityDto } from './../entity/entity.dto'; import { AgentDataDto } from './agent-data.dto'; import { AccountAttributeDto } from './attribute.dto'; export declare class AccountDto { identity: IdentityDto; entity: EntityDto; type: string; country: string; legalEntity: string; accountCode: string; category: string; biller: string; agentData?: AgentDataDto[]; merchantOfRecordAccount?: string; payable?: AccountAttributeDto; receivable?: AccountAttributeDto; campaigns?: string[]; errors?: any[]; constructor(d?: AccountDto); }