/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { FieldPropertiesDto } from './FieldPropertiesDto'; import type { DateTimeFieldEditor } from './DateTimeFieldEditor'; import type { DateTimeCalculatedDefaultValue } from './DateTimeCalculatedDefaultValue'; /** * * @export * @interface DateTimeFieldPropertiesDto */ export interface DateTimeFieldPropertiesDto extends FieldPropertiesDto { /** * * @type {{ [key: string]: Date | null; }} * @memberof DateTimeFieldPropertiesDto */ defaultValues?: { [key: string]: Date | null; }; /** * The default value for the field value. * @type {Date} * @memberof DateTimeFieldPropertiesDto */ defaultValue?: Date | null; /** * The maximum allowed value for the field value. * @type {Date} * @memberof DateTimeFieldPropertiesDto */ maxValue?: Date | null; /** * The minimum allowed value for the field value. * @type {Date} * @memberof DateTimeFieldPropertiesDto */ minValue?: Date | null; /** * The format pattern when displayed in the UI. * @type {string} * @memberof DateTimeFieldPropertiesDto */ format?: string | null; /** * * @type {DateTimeFieldEditor} * @memberof DateTimeFieldPropertiesDto */ editor?: DateTimeFieldEditor; /** * * @type {DateTimeCalculatedDefaultValue} * @memberof DateTimeFieldPropertiesDto */ calculatedDefaultValue?: DateTimeCalculatedDefaultValue; } /** * Check if a given object implements the DateTimeFieldPropertiesDto interface. */ export declare function instanceOfDateTimeFieldPropertiesDto(value: any): value is DateTimeFieldPropertiesDto; export declare function DateTimeFieldPropertiesDtoFromJSON(json: any): DateTimeFieldPropertiesDto; export declare function DateTimeFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): DateTimeFieldPropertiesDto; export declare function DateTimeFieldPropertiesDtoToJSON(value?: DateTimeFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;