/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface TestAWSCredentialsRequest */ export interface TestAWSCredentialsRequest { /** * * @type {string} * @memberof TestAWSCredentialsRequest */ accessKeyId: string; /** * * @type {string} * @memberof TestAWSCredentialsRequest */ secretAccessKey: string; } export function TestAWSCredentialsRequestFromJSON(json: any): TestAWSCredentialsRequest { return TestAWSCredentialsRequestFromJSONTyped(json, false); } export function TestAWSCredentialsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TestAWSCredentialsRequest { if ((json === undefined) || (json === null)) { return json; } return { 'accessKeyId': json['access_key_id'], 'secretAccessKey': json['secret_access_key'], }; } export function TestAWSCredentialsRequestToJSON(value?: TestAWSCredentialsRequest | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'access_key_id': value.accessKeyId, 'secret_access_key': value.secretAccessKey, }; }