UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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