import { IkasCustomerAttributeOption } from "./option"; import { IkasCustomerAttributeSalesChannel } from "./sales-channel"; import { IkasCustomerAttributeTranslation } from "./translation"; export type IkasCustomerAttribute = { id: string; createdAt: number; updatedAt: number; deleted?: boolean | null; description: string | null; name: string; type: IkasCustomerAttributeType; options: IkasCustomerAttributeOption[] | null; salesChannels: IkasCustomerAttributeSalesChannel[] | null; translations?: IkasCustomerAttributeTranslation[] | null; order: number | null; }; export type IkasCustomerAttributeType = "BOOLEAN" | "CHOICE" | "DATE" | "DATETIME" | "MULTIPLE_CHOICE" | "NUMERIC" | "TEXT";