import { PagenationParameters } from './base/pagenation';
export interface InvoiceMessage {
    id: number;
    sent_by: string;
    sent_by_email: string;
    sent_from: string;
    sent_from_email: string;
    recipients: InvoiceMessageRecipient[];
    subject: string;
    body: string;
    include_link_to_client_invoice: boolean;
    attach_pdf: boolean;
    send_me_a_copy: boolean;
    thank_you: boolean;
    event_type: string;
    reminder: boolean;
    send_reminder_on: string;
    created_at: string;
    updated_at: string;
}
export interface InvoiceMessageRecipient {
    name: string;
    email: string;
}
export interface InvoiceMessagesPagenationResponse extends PagenationParameters {
    invoiceMessages: InvoiceMessage[];
}
export interface InvoiceMessagesPagenationParameters extends PagenationParameters {
    updated_since: string;
}
