/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 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 WorkspaceCheckIn */ export interface WorkspaceCheckIn { /** * * @type {string} * @memberof WorkspaceCheckIn */ mountpoint?: string; /** * * @type {string} * @memberof WorkspaceCheckIn */ protocol?: string; /** * * @type {string} * @memberof WorkspaceCheckIn */ address?: string; } export declare function WorkspaceCheckInFromJSON(json: any): WorkspaceCheckIn; export declare function WorkspaceCheckInFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkspaceCheckIn; export declare function WorkspaceCheckInToJSON(value?: WorkspaceCheckIn | null): any;