UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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