/** * 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 BaseArchive */ export interface BaseArchive { /** * * @type {string} * @memberof BaseArchive */ id: string; /** * * @type {EnumArchiveType} * @memberof BaseArchive */ type: EnumArchiveType; /** * * @type {string} * @memberof BaseArchive */ group: string; /** * * @type {string} * @memberof BaseArchive */ tenant_id: string; /** * * @type {string} * @memberof BaseArchive */ owner: string; /** * * @type {string} * @memberof BaseArchive */ uuid?: string; /** * * @type {string} * @memberof BaseArchive */ archive_dir: string; } export declare function BaseArchiveFromJSON(json: any): BaseArchive; export declare function BaseArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseArchive; export declare function BaseArchiveToJSON(value?: BaseArchive | null): any;