UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.64 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 { SoSOfferEntityBase } from './SoSOfferEntityBase'; /** * * @export * @interface V4OffersGetOffersInViewResponseDto */ export interface V4OffersGetOffersInViewResponseDto { /** * List of offers retrieved from the database * @type {Array<SoSOfferEntityBase>} * @memberof V4OffersGetOffersInViewResponseDto */ objects: Array<SoSOfferEntityBase>; /** * Total count of offers matching the query * @type {number} * @memberof V4OffersGetOffersInViewResponseDto */ count: number; } /** * Check if a given object implements the V4OffersGetOffersInViewResponseDto interface. */ export declare function instanceOfV4OffersGetOffersInViewResponseDto(value: object): value is V4OffersGetOffersInViewResponseDto; export declare function V4OffersGetOffersInViewResponseDtoFromJSON(json: any): V4OffersGetOffersInViewResponseDto; export declare function V4OffersGetOffersInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OffersGetOffersInViewResponseDto; export declare function V4OffersGetOffersInViewResponseDtoToJSON(json: any): V4OffersGetOffersInViewResponseDto; export declare function V4OffersGetOffersInViewResponseDtoToJSONTyped(value?: V4OffersGetOffersInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4OffersGetOffersInViewResponseDto.d.ts.map