/** * This file was auto-generated by Fern from our API Definition. */ /** * Moneybird contact (customer/supplier) - API format * * Attributes: * company_name: Company name (optional, for business contacts) * firstname: First name (optional, for individual contacts) * lastname: Last name (optional, for individual contacts) * phone: Phone number * address1: Street address * city: City * zipcode: Postal code * country: Country code (e.g., 'NL', 'DE', 'FR') * sepa_iban: SEPA IBAN for direct debit (optional) */ export interface MoneybirdContact { /** Company name */ company_name?: string; /** First name */ firstname?: string; /** Last name */ lastname?: string; /** Phone number */ phone?: string; /** Street address */ address1?: string; /** City */ city?: string; /** Postal code */ zipcode?: string; /** Country code */ country?: string; /** SEPA IBAN */ sepa_iban?: string; }