UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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