UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

52 lines 1.93 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. */ /** * * @export * @interface V4ViewsGetViewObjectSchemaResponseColumn */ export interface V4ViewsGetViewObjectSchemaResponseColumn { /** * The name of the column * @type {string} * @memberof V4ViewsGetViewObjectSchemaResponseColumn */ name: string; /** * The type of the column, e.g., string, number, boolean, ... * @type {string} * @memberof V4ViewsGetViewObjectSchemaResponseColumn */ type: V4ViewsGetViewObjectSchemaResponseColumnType; } /** * @export * @enum {string} */ export declare enum V4ViewsGetViewObjectSchemaResponseColumnType { String = "string", Number = "number", Boolean = "boolean", Date = "date", Object = "object", Array = "array", Unknown = "unknown" } /** * Check if a given object implements the V4ViewsGetViewObjectSchemaResponseColumn interface. */ export declare function instanceOfV4ViewsGetViewObjectSchemaResponseColumn(value: object): value is V4ViewsGetViewObjectSchemaResponseColumn; export declare function V4ViewsGetViewObjectSchemaResponseColumnFromJSON(json: any): V4ViewsGetViewObjectSchemaResponseColumn; export declare function V4ViewsGetViewObjectSchemaResponseColumnFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ViewsGetViewObjectSchemaResponseColumn; export declare function V4ViewsGetViewObjectSchemaResponseColumnToJSON(json: any): V4ViewsGetViewObjectSchemaResponseColumn; export declare function V4ViewsGetViewObjectSchemaResponseColumnToJSONTyped(value?: V4ViewsGetViewObjectSchemaResponseColumn | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ViewsGetViewObjectSchemaResponseColumn.d.ts.map