UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

52 lines 1.89 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 { V4AirtableTableDto } from './V4AirtableTableDto'; /** * * @export * @interface V4AirtableGetSchemaResponseDto */ export interface V4AirtableGetSchemaResponseDto { /** * Array of Airtable tables with their complete schemas * @type {Array<V4AirtableTableDto>} * @memberof V4AirtableGetSchemaResponseDto */ tables: Array<V4AirtableTableDto>; /** * Airtable base ID * @type {string} * @memberof V4AirtableGetSchemaResponseDto */ baseId: string; /** * Whether the data was retrieved from cache * @type {boolean} * @memberof V4AirtableGetSchemaResponseDto */ cached?: boolean; /** * ISO timestamp of when the schema was retrieved * @type {string} * @memberof V4AirtableGetSchemaResponseDto */ retrievedAt?: string; } /** * Check if a given object implements the V4AirtableGetSchemaResponseDto interface. */ export declare function instanceOfV4AirtableGetSchemaResponseDto(value: object): value is V4AirtableGetSchemaResponseDto; export declare function V4AirtableGetSchemaResponseDtoFromJSON(json: any): V4AirtableGetSchemaResponseDto; export declare function V4AirtableGetSchemaResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableGetSchemaResponseDto; export declare function V4AirtableGetSchemaResponseDtoToJSON(json: any): V4AirtableGetSchemaResponseDto; export declare function V4AirtableGetSchemaResponseDtoToJSONTyped(value?: V4AirtableGetSchemaResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4AirtableGetSchemaResponseDto.d.ts.map