@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
51 lines (50 loc) • 1.48 kB
TypeScript
/**
* Vectorize API
* API for Vectorize services (Beta)
*
* The version of the OpenAPI document: 0.1.2
*
*
* 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 GetWorkspaceByIdResponse
*/
export interface GetWorkspaceByIdResponse {
/**
*
* @type {string}
* @memberof GetWorkspaceByIdResponse
*/
id: string;
/**
*
* @type {string}
* @memberof GetWorkspaceByIdResponse
*/
name: string;
/**
*
* @type {string}
* @memberof GetWorkspaceByIdResponse
*/
createdAt?: string | null;
/**
*
* @type {string}
* @memberof GetWorkspaceByIdResponse
*/
updatedAt?: string | null;
}
/**
* Check if a given object implements the GetWorkspaceByIdResponse interface.
*/
export declare function instanceOfGetWorkspaceByIdResponse(value: object): value is GetWorkspaceByIdResponse;
export declare function GetWorkspaceByIdResponseFromJSON(json: any): GetWorkspaceByIdResponse;
export declare function GetWorkspaceByIdResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWorkspaceByIdResponse;
export declare function GetWorkspaceByIdResponseToJSON(json: any): GetWorkspaceByIdResponse;
export declare function GetWorkspaceByIdResponseToJSONTyped(value?: GetWorkspaceByIdResponse | null, ignoreDiscriminator?: boolean): any;