import { ReceptionEmailsType, ReceptionProvidersType } from './response.model';
/**
 * Root element for the response of the RequestReceiverInfo method.
 * Contains information about an entity's registered providers and reception emails.
 */
export interface ReceiverInfoDoc {
    /** List of VAT numbers of the providers the entity uses. */
    receptionsProviders?: ReceptionProvidersType[];
    /** List of emails the entity has declared for receiving electronic invoices. */
    receptionEmails?: ReceptionEmailsType[];
}
