UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

46 lines 1.96 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 { V4MlsListingGetUniqueValuesUniqueValueDto } from './V4MlsListingGetUniqueValuesUniqueValueDto'; /** * * @export * @interface V4MlsListingGetUniqueValuesResponseDto */ export interface V4MlsListingGetUniqueValuesResponseDto { /** * List of unique values with their counts * @type {Array<V4MlsListingGetUniqueValuesUniqueValueDto>} * @memberof V4MlsListingGetUniqueValuesResponseDto */ uniqueValues: Array<V4MlsListingGetUniqueValuesUniqueValueDto>; /** * Total number of unique values (before pagination) * @type {number} * @memberof V4MlsListingGetUniqueValuesResponseDto */ total: number; /** * The column that was queried * @type {string} * @memberof V4MlsListingGetUniqueValuesResponseDto */ column: string; } /** * Check if a given object implements the V4MlsListingGetUniqueValuesResponseDto interface. */ export declare function instanceOfV4MlsListingGetUniqueValuesResponseDto(value: object): value is V4MlsListingGetUniqueValuesResponseDto; export declare function V4MlsListingGetUniqueValuesResponseDtoFromJSON(json: any): V4MlsListingGetUniqueValuesResponseDto; export declare function V4MlsListingGetUniqueValuesResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MlsListingGetUniqueValuesResponseDto; export declare function V4MlsListingGetUniqueValuesResponseDtoToJSON(json: any): V4MlsListingGetUniqueValuesResponseDto; export declare function V4MlsListingGetUniqueValuesResponseDtoToJSONTyped(value?: V4MlsListingGetUniqueValuesResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MlsListingGetUniqueValuesResponseDto.d.ts.map