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