@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.81 kB
TypeScript
/**
* 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 V4NotificationsGetNotificationsResponseDto
*/
export interface V4NotificationsGetNotificationsResponseDto {
/**
* List of notifications retrieved from the database
* @type {Array<SoSNotificationEntityBase>}
* @memberof V4NotificationsGetNotificationsResponseDto
*/
objects: Array<SoSNotificationEntityBase>;
/**
* Total count of notifications matching the query
* @type {number}
* @memberof V4NotificationsGetNotificationsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4NotificationsGetNotificationsResponseDto interface.
*/
export declare function instanceOfV4NotificationsGetNotificationsResponseDto(value: object): value is V4NotificationsGetNotificationsResponseDto;
export declare function V4NotificationsGetNotificationsResponseDtoFromJSON(json: any): V4NotificationsGetNotificationsResponseDto;
export declare function V4NotificationsGetNotificationsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4NotificationsGetNotificationsResponseDto;
export declare function V4NotificationsGetNotificationsResponseDtoToJSON(json: any): V4NotificationsGetNotificationsResponseDto;
export declare function V4NotificationsGetNotificationsResponseDtoToJSONTyped(value?: V4NotificationsGetNotificationsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4NotificationsGetNotificationsResponseDto.d.ts.map