UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.68 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 { V4AirtableListCommentsCommentDto } from './V4AirtableListCommentsCommentDto'; /** * * @export * @interface V4AirtableListCommentsResponseDto */ export interface V4AirtableListCommentsResponseDto { /** * Array of Airtable comments * @type {Array<V4AirtableListCommentsCommentDto>} * @memberof V4AirtableListCommentsResponseDto */ comments: Array<V4AirtableListCommentsCommentDto>; /** * Pagination token for next page (if more comments exist) * @type {string} * @memberof V4AirtableListCommentsResponseDto */ offset?: string; } /** * Check if a given object implements the V4AirtableListCommentsResponseDto interface. */ export declare function instanceOfV4AirtableListCommentsResponseDto(value: object): value is V4AirtableListCommentsResponseDto; export declare function V4AirtableListCommentsResponseDtoFromJSON(json: any): V4AirtableListCommentsResponseDto; export declare function V4AirtableListCommentsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableListCommentsResponseDto; export declare function V4AirtableListCommentsResponseDtoToJSON(json: any): V4AirtableListCommentsResponseDto; export declare function V4AirtableListCommentsResponseDtoToJSONTyped(value?: V4AirtableListCommentsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4AirtableListCommentsResponseDto.d.ts.map