/** * This file was auto-generated by Fern from our API Definition. */ export interface InputEnumPropertyOption { /** A visual label for this option, defaults to value if not provided */ label?: string; /** A short description for this option */ description?: string; /** An optional color to assign this option */ color?: string; /** A reference pointer to a previously registered icon */ icon?: string; /** An arbitrary JSON object to be associated with this option and made available to hooks */ meta?: Record; /** The value or ID of this option. This value will be sent in egress. The type is a string | integer | boolean. */ value?: any; }