UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

34 lines 1.79 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.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 { V4PropertiesGetAddressAutocompleteResponseSuggestionDto } from './V4PropertiesGetAddressAutocompleteResponseSuggestionDto'; /** * * @export * @interface V4PropertiesGetAddressAutocompleteResponseDto */ export interface V4PropertiesGetAddressAutocompleteResponseDto { /** * Array of address suggestions * @type {Array<V4PropertiesGetAddressAutocompleteResponseSuggestionDto>} * @memberof V4PropertiesGetAddressAutocompleteResponseDto */ suggestions: Array<V4PropertiesGetAddressAutocompleteResponseSuggestionDto>; } /** * Check if a given object implements the V4PropertiesGetAddressAutocompleteResponseDto interface. */ export declare function instanceOfV4PropertiesGetAddressAutocompleteResponseDto(value: object): value is V4PropertiesGetAddressAutocompleteResponseDto; export declare function V4PropertiesGetAddressAutocompleteResponseDtoFromJSON(json: any): V4PropertiesGetAddressAutocompleteResponseDto; export declare function V4PropertiesGetAddressAutocompleteResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4PropertiesGetAddressAutocompleteResponseDto; export declare function V4PropertiesGetAddressAutocompleteResponseDtoToJSON(json: any): V4PropertiesGetAddressAutocompleteResponseDto; export declare function V4PropertiesGetAddressAutocompleteResponseDtoToJSONTyped(value?: V4PropertiesGetAddressAutocompleteResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4PropertiesGetAddressAutocompleteResponseDto.d.ts.map