DynamicFieldModel: {
    CustomData: CustomDataModel;
    Name: string;
    Type: DynamicFieldType;
    Value: string;
}

Represents detailed information about a dynamic field.

Type declaration

  • CustomData: CustomDataModel

    Custom data associated with the field. This can be used to store additional metadata or settings specific to the field.

  • Name: string

    The name of the field, used to identify it.

  • Type: DynamicFieldType

    The type of the field, defining its nature (e.g., text, image). This can be one of the values defined in the DynamicFieldType enum.

  • Value: string

    The current value or content of the field.