CompanyInvoiceUpdateData

An object representing a company invoice data that can be updated.

PropertyDescriptionTypeOptional
aliasThe invoice identifierStringNo
emailThe user emailStringYes
referenceThe identifier inside the companyStringYes
isDefaultDefines if the company invoice is the default payment methodBooleanYes
Copy
Copied
struct CompanyInvoiceUpdateData {
    alias: String
    email: String
    reference: String
    isDefault: Bool
}