import { Attr } from 'ts-framework' export class AutocompleteRequestParamsDTO { @Attr({ type: String }) input: string @Attr({ type: Number, optional: true }) offset?: number @Attr({ type: Object, optional: true }) location?: any @Attr({ type: String, optional: true }) language?: string @Attr({ type: Number, optional: true }) radius?: number @Attr({ type: String, optional: true }) types?: 'geocode' | 'address' | 'establishment' | '(regions)' | '(cities)' @Attr({ type: Object, optional: true }) components?: any @Attr({ type: Boolean, optional: true }) strictbounds?: boolean @Attr({ type: Object, optional: true }) retryOptions?: any @Attr({ type: Number, optional: true }) timeout?: any }