/**
 * VRt.Studio [ST]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { CustomfieldEntityTypeStudio } from './customfieldEntityType';
import { TranslationsStudio } from './translations';
import { TableCustomfieldsColumnTypeStudio } from './tableCustomfieldsColumnType';
/**
 * Rule for converting a custom field from an attribute.
 */
export interface CustomfieldConvertRuleStudio {
    [key: string]: any | any;
    entity_type: CustomfieldEntityTypeStudio;
    /**
     * The attribute key whose value will be written to the specified custom field.
     */
    source_attribute_key: string;
    target_customfield: TableCustomfieldsColumnTypeStudio | null;
    translations?: TranslationsStudio;
}
