UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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