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