pub struct InvoiceMessage {Show 17 fields
pub thank_you: Option<bool>,
pub created_at: Option<String>,
pub sent_from_email: Option<String>,
pub id: Option<i64>,
pub send_me_a_copy: Option<bool>,
pub event_type: Option<String>,
pub include_link_to_client_invoice: Option<bool>,
pub sent_by_email: Option<String>,
pub sent_from: Option<String>,
pub recipients: Option<Vec<InvoiceMessageRecipient>>,
pub subject: Option<String>,
pub reminder: Option<bool>,
pub body: Option<String>,
pub attach_pdf: Option<bool>,
pub send_reminder_on: Option<String>,
pub sent_by: Option<String>,
pub updated_at: Option<String>,
}Fields§
§thank_you: Option<bool>Whether this is a thank you message.
created_at: Option<String>Date and time the message was created.
sent_from_email: Option<String>Email of the user that message was sent from.
id: Option<i64>Unique ID for the message.
send_me_a_copy: Option<bool>Whether to email a copy of the message to the current user.
event_type: Option<String>The type of invoice event that occurred with the message: send, close, draft, re-open, or view.
include_link_to_client_invoice: Option<bool>Whether to include a link to the client invoice in the message body. Not used when thank_you is true.
sent_by_email: Option<String>Email of the user that created the message.
sent_from: Option<String>Name of the user that the message was sent from.
recipients: Option<Vec<InvoiceMessageRecipient>>Array of invoice message recipients.
subject: Option<String>The message subject.
reminder: Option<bool>Whether this is a reminder message.
body: Option<String>The message body.
attach_pdf: Option<bool>Whether to attach the invoice PDF to the message email.
send_reminder_on: Option<String>The date the reminder email will be sent.
sent_by: Option<String>Name of the user that created the message.
updated_at: Option<String>Date and time the message was last updated.