UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.61 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 { SoSMessageEntityBase } from './SoSMessageEntityBase'; /** * * @export * @interface V4MessagesGetMessageResponseDto */ export interface V4MessagesGetMessageResponseDto { /** * List of messages retrieved from the database * @type {Array<SoSMessageEntityBase>} * @memberof V4MessagesGetMessageResponseDto */ objects: Array<SoSMessageEntityBase>; /** * Total count of messages matching the query * @type {number} * @memberof V4MessagesGetMessageResponseDto */ count: number; } /** * Check if a given object implements the V4MessagesGetMessageResponseDto interface. */ export declare function instanceOfV4MessagesGetMessageResponseDto(value: object): value is V4MessagesGetMessageResponseDto; export declare function V4MessagesGetMessageResponseDtoFromJSON(json: any): V4MessagesGetMessageResponseDto; export declare function V4MessagesGetMessageResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessagesGetMessageResponseDto; export declare function V4MessagesGetMessageResponseDtoToJSON(json: any): V4MessagesGetMessageResponseDto; export declare function V4MessagesGetMessageResponseDtoToJSONTyped(value?: V4MessagesGetMessageResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessagesGetMessageResponseDto.d.ts.map