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