@logismix/mydata-client
Version:
Greek myDATA (AADE) API client library
12 lines (11 loc) • 525 B
TypeScript
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[];
}