import type { CustomFieldValueUpdate } from './customFieldValueUpdate';

/** Details of updates for a custom field. */
export interface CustomFieldValueUpdateDetails {
  /** The list of custom field update details. */
  updates?: CustomFieldValueUpdate[];
}
