UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.8 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 { SoSNotificationEntityBase } from './SoSNotificationEntityBase'; /** * * @export * @interface V4NotificationsGetNotificationResponseDto */ export interface V4NotificationsGetNotificationResponseDto { /** * List of notifications retrieved from the database * @type {Array<SoSNotificationEntityBase>} * @memberof V4NotificationsGetNotificationResponseDto */ objects: Array<SoSNotificationEntityBase>; /** * Total count of notifications matching the query * @type {number} * @memberof V4NotificationsGetNotificationResponseDto */ count: number; } /** * Check if a given object implements the V4NotificationsGetNotificationResponseDto interface. */ export declare function instanceOfV4NotificationsGetNotificationResponseDto(value: object): value is V4NotificationsGetNotificationResponseDto; export declare function V4NotificationsGetNotificationResponseDtoFromJSON(json: any): V4NotificationsGetNotificationResponseDto; export declare function V4NotificationsGetNotificationResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4NotificationsGetNotificationResponseDto; export declare function V4NotificationsGetNotificationResponseDtoToJSON(json: any): V4NotificationsGetNotificationResponseDto; export declare function V4NotificationsGetNotificationResponseDtoToJSONTyped(value?: V4NotificationsGetNotificationResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4NotificationsGetNotificationResponseDto.d.ts.map