/** * 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 { GeolocationFieldEditor } from './GeolocationFieldEditor'; /** * * @export * @interface GeolocationFieldPropertiesDto */ export interface GeolocationFieldPropertiesDto extends FieldPropertiesDto { /** * * @type {GeolocationFieldEditor} * @memberof GeolocationFieldPropertiesDto */ editor?: GeolocationFieldEditor; } /** * Check if a given object implements the GeolocationFieldPropertiesDto interface. */ export declare function instanceOfGeolocationFieldPropertiesDto(value: any): value is GeolocationFieldPropertiesDto; export declare function GeolocationFieldPropertiesDtoFromJSON(json: any): GeolocationFieldPropertiesDto; export declare function GeolocationFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): GeolocationFieldPropertiesDto; export declare function GeolocationFieldPropertiesDtoToJSON(value?: GeolocationFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;