/* tslint:disable */ /* eslint-disable */ /** * 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 { exists, mapValues } from '../runtime'; /** * * @export * @interface S3ArchiveAllOf */ export interface S3ArchiveAllOf { /** * * @type {string} * @memberof S3ArchiveAllOf */ endpoint: string; /** * * @type {string} * @memberof S3ArchiveAllOf */ bucket: string; /** * * @type {string} * @memberof S3ArchiveAllOf */ region: string; } export function S3ArchiveAllOfFromJSON(json: any): S3ArchiveAllOf { return S3ArchiveAllOfFromJSONTyped(json, false); } export function S3ArchiveAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): S3ArchiveAllOf { if ((json === undefined) || (json === null)) { return json; } return { 'endpoint': json['endpoint'], 'bucket': json['bucket'], 'region': json['region'], }; } export function S3ArchiveAllOfToJSON(value?: S3ArchiveAllOf | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'endpoint': value.endpoint, 'bucket': value.bucket, 'region': value.region, }; }