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