CompanyInvoiceInfo

An object representing a company invoice that can be added.

PropertyDescriptionTypeOptional
emailThe user emailStringNo
organizationNumberThe company organization numberStringNo
referenceThe identifier inside the companyStringNo
isDefaultDefines if the company invoice is the default payment methodBooleanYes
labelDefaults to the company name.StringYes
Copy
Copied
struct CompanyInvoiceInfo {
    email: String
    organizationNumber: String
    reference: String
    isDefault: Bool
    label: String?
}