UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.78 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 { SoSAirtableCommentEntityBase } from './SoSAirtableCommentEntityBase'; /** * * @export * @interface V4AirtableCommentsGetCommentsResponseDto */ export interface V4AirtableCommentsGetCommentsResponseDto { /** * List of comments retrieved from the database * @type {Array<SoSAirtableCommentEntityBase>} * @memberof V4AirtableCommentsGetCommentsResponseDto */ objects: Array<SoSAirtableCommentEntityBase>; /** * Total count of comments matching the query * @type {number} * @memberof V4AirtableCommentsGetCommentsResponseDto */ count: number; } /** * Check if a given object implements the V4AirtableCommentsGetCommentsResponseDto interface. */ export declare function instanceOfV4AirtableCommentsGetCommentsResponseDto(value: object): value is V4AirtableCommentsGetCommentsResponseDto; export declare function V4AirtableCommentsGetCommentsResponseDtoFromJSON(json: any): V4AirtableCommentsGetCommentsResponseDto; export declare function V4AirtableCommentsGetCommentsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableCommentsGetCommentsResponseDto; export declare function V4AirtableCommentsGetCommentsResponseDtoToJSON(json: any): V4AirtableCommentsGetCommentsResponseDto; export declare function V4AirtableCommentsGetCommentsResponseDtoToJSONTyped(value?: V4AirtableCommentsGetCommentsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4AirtableCommentsGetCommentsResponseDto.d.ts.map