/** Details of a custom option for a field. */
export interface CustomFieldOption {
  /** The URL of these custom field option details. */
  self?: string;
  /** The value of the custom field option. */
  value?: string;
}
