InvoiceRecipient
Defines the information about who an invoice is issued to.
type InvoiceRecipient {
address: InvoiceRecipientAddress
billingRecipient: InvoiceBillingRecipient
email: EmailAddress
fax: String
firstName: String
jobTitle: String
lastName: String
organizationName: String
phone: String
title: String
}
Fields
InvoiceRecipient.address ● InvoiceRecipientAddress object
The recipient's address. Optional.
InvoiceRecipient.billingRecipient ● InvoiceBillingRecipient object
The billing details for the invoice recipient. Optional.
InvoiceRecipient.email ● EmailAddress scalar
The contact's primary email address. Optional, unless neither lastName or organizationName are specified.
InvoiceRecipient.fax ● String scalar
UTF-8 string value that represents the recipient's fax number. Optional.
InvoiceRecipient.firstName ● String scalar
UTF-8 string value that represents the first name of the recipient. Optional.
InvoiceRecipient.jobTitle ● String scalar
UTF-8 string value that represents the job title of the recipient. Optional.
InvoiceRecipient.lastName ● String scalar
UTF-8 string value that represents the last name of the recipient. Optional, unless neither email or organizationName are specified.
InvoiceRecipient.organizationName ● String scalar
UTF-8 string value that represents the organization name of the recipient. Optional, unless neither lastName or email are specified.
InvoiceRecipient.phone ● String scalar
UTF-8 string value that represents the recipient's phone number. Optional.
InvoiceRecipient.title ● String scalar
UTF-8 string value that represents the title of the recipient's name such as Dr/Mrs/Mr. Optional.
Member Of
Invoice object