/* tslint:disable */ /* eslint-disable */ /** * Equisoft /plan API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; /** * * @export * @interface CmdCopyFNAResponse */ export interface CmdCopyFNAResponse { /** * Uuid of the newly created fna. * @type {string} * @memberof CmdCopyFNAResponse */ newFnaUuid: string; } /** * Check if a given object implements the CmdCopyFNAResponse interface. */ export function instanceOfCmdCopyFNAResponse(value: object): value is CmdCopyFNAResponse { if (!('newFnaUuid' in value) || value['newFnaUuid'] === undefined) return false; return true; } export function CmdCopyFNAResponseFromJSON(json: any): CmdCopyFNAResponse { return CmdCopyFNAResponseFromJSONTyped(json, false); } export function CmdCopyFNAResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CmdCopyFNAResponse { if (json == null) { return json; } return { 'newFnaUuid': json['newFnaUuid'], }; } export function CmdCopyFNAResponseToJSON(json: any): CmdCopyFNAResponse { return CmdCopyFNAResponseToJSONTyped(json, false); } export function CmdCopyFNAResponseToJSONTyped(value?: CmdCopyFNAResponse | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'newFnaUuid': value['newFnaUuid'], }; }