import { IdentityDto } from './../shared'; import { EntityDto } from './../entity'; import { MerchantIdentifierDto } from './../merchant-identifiers'; import { ChannelAccountType } from '@nx-ws/bhn-enums/channel/channel-account-type.enum'; export declare class ChannelDto { identity: IdentityDto; entity: EntityDto; account?: string; channelAccountType: ChannelAccountType; category?: string; legalEntity?: string; type?: string; merchantIdentifiers?: MerchantIdentifierDto[]; constructor(d?: ChannelDto); }