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