@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.09 kB
TypeScript
/**
* Vectorize API (Beta)
* API for Vectorize services
*
* The version of the OpenAPI document: 0.0.1
*
*
* 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 { ScheduleSchemaType } from './ScheduleSchemaType';
/**
*
* @export
* @interface ScheduleSchema
*/
export interface ScheduleSchema {
/**
*
* @type {ScheduleSchemaType}
* @memberof ScheduleSchema
*/
type: ScheduleSchemaType;
}
/**
* Check if a given object implements the ScheduleSchema interface.
*/
export declare function instanceOfScheduleSchema(value: object): value is ScheduleSchema;
export declare function ScheduleSchemaFromJSON(json: any): ScheduleSchema;
export declare function ScheduleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleSchema;
export declare function ScheduleSchemaToJSON(json: any): ScheduleSchema;
export declare function ScheduleSchemaToJSONTyped(value?: ScheduleSchema | null, ignoreDiscriminator?: boolean): any;