UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.68 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 { SoSMarketEntityBase } from './SoSMarketEntityBase'; /** * * @export * @interface V4MarketsGetMarketsInViewResponseDto */ export interface V4MarketsGetMarketsInViewResponseDto { /** * List of markets retrieved from the database * @type {Array<SoSMarketEntityBase>} * @memberof V4MarketsGetMarketsInViewResponseDto */ objects: Array<SoSMarketEntityBase>; /** * Total count of markets matching the query * @type {number} * @memberof V4MarketsGetMarketsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4MarketsGetMarketsInViewResponseDto interface. */ export declare function instanceOfV4MarketsGetMarketsInViewResponseDto(value: object): value is V4MarketsGetMarketsInViewResponseDto; export declare function V4MarketsGetMarketsInViewResponseDtoFromJSON(json: any): V4MarketsGetMarketsInViewResponseDto; export declare function V4MarketsGetMarketsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MarketsGetMarketsInViewResponseDto; export declare function V4MarketsGetMarketsInViewResponseDtoToJSON(json: any): V4MarketsGetMarketsInViewResponseDto; export declare function V4MarketsGetMarketsInViewResponseDtoToJSONTyped(value?: V4MarketsGetMarketsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MarketsGetMarketsInViewResponseDto.d.ts.map