UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.57 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 { SoSThreadEntityBase } from './SoSThreadEntityBase'; /** * * @export * @interface V4ThreadsGetThreadResponseDto */ export interface V4ThreadsGetThreadResponseDto { /** * List of threads retrieved from the database * @type {Array<SoSThreadEntityBase>} * @memberof V4ThreadsGetThreadResponseDto */ objects: Array<SoSThreadEntityBase>; /** * Total count of threads matching the query * @type {number} * @memberof V4ThreadsGetThreadResponseDto */ count: number; } /** * Check if a given object implements the V4ThreadsGetThreadResponseDto interface. */ export declare function instanceOfV4ThreadsGetThreadResponseDto(value: object): value is V4ThreadsGetThreadResponseDto; export declare function V4ThreadsGetThreadResponseDtoFromJSON(json: any): V4ThreadsGetThreadResponseDto; export declare function V4ThreadsGetThreadResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ThreadsGetThreadResponseDto; export declare function V4ThreadsGetThreadResponseDtoToJSON(json: any): V4ThreadsGetThreadResponseDto; export declare function V4ThreadsGetThreadResponseDtoToJSONTyped(value?: V4ThreadsGetThreadResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ThreadsGetThreadResponseDto.d.ts.map