/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EnumArchiveType } from './'; /** * * @export * @interface TapisSystemArchive */ export interface TapisSystemArchive { /** * * @type {string} * @memberof TapisSystemArchive */ id: string; /** * * @type {EnumArchiveType} * @memberof TapisSystemArchive */ type: EnumArchiveType; /** * * @type {string} * @memberof TapisSystemArchive */ group: string; /** * * @type {string} * @memberof TapisSystemArchive */ tenant_id: string; /** * * @type {string} * @memberof TapisSystemArchive */ owner: string; /** * * @type {string} * @memberof TapisSystemArchive */ uuid?: string; /** * * @type {string} * @memberof TapisSystemArchive */ archive_dir: string; /** * * @type {string} * @memberof TapisSystemArchive */ system_id: string; } export declare function TapisSystemArchiveFromJSON(json: any): TapisSystemArchive; export declare function TapisSystemArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapisSystemArchive; export declare function TapisSystemArchiveToJSON(value?: TapisSystemArchive | null): any;