export type Address = { id: number '@id'?: string label: string | null street: string | null streetComplement: string | null postalCode: string | null city: string | null country: string client?: string | null prospect?: string | null } export type AddressWrite = { label: string | null street: string | null streetComplement: string | null postalCode: string | null city: string | null country: string client?: string | null prospect?: string | null }