/** * 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. */ /** * * @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 declare function instanceOfCmdCopyFNAResponse(value: object): value is CmdCopyFNAResponse; export declare function CmdCopyFNAResponseFromJSON(json: any): CmdCopyFNAResponse; export declare function CmdCopyFNAResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CmdCopyFNAResponse; export declare function CmdCopyFNAResponseToJSON(json: any): CmdCopyFNAResponse; export declare function CmdCopyFNAResponseToJSONTyped(value?: CmdCopyFNAResponse | null, ignoreDiscriminator?: boolean): any;