UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

46 lines 2.46 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 { SoSAirtableCommentNotificationEntityBase } from './SoSAirtableCommentNotificationEntityBase'; /** * * @export * @interface V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto */ export interface V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto { /** * List of notifications retrieved from the database * @type {Array<SoSAirtableCommentNotificationEntityBase>} * @memberof V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto */ objects: Array<SoSAirtableCommentNotificationEntityBase>; /** * Total count of notifications matching the query * @type {number} * @memberof V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto */ count: number; /** * Count of unread notifications * @type {number} * @memberof V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto */ unreadCount?: number; } /** * Check if a given object implements the V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto interface. */ export declare function instanceOfV4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto(value: object): value is V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto; export declare function V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDtoFromJSON(json: any): V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto; export declare function V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto; export declare function V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDtoToJSON(json: any): V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto; export declare function V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDtoToJSONTyped(value?: V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4AirtableCommentNotificationsGetNotificationsFilteredByResponseDto.d.ts.map