/** * 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 CmdCopyFNA */ export interface CmdCopyFNA { /** * Uuid of the fna to copy * @type {string} * @memberof CmdCopyFNA */ fnaUuid: string; /** * Email of the user to which the new FNA should be assigned, default to owner of the FNA * @type {string} * @memberof CmdCopyFNA */ userEmail?: string | null; /** * Array of participant UUIDs to modify * @type {{ [key: string]: string; }} * @memberof CmdCopyFNA */ newParticipantUuids?: { [key: string]: string; }; } /** * Check if a given object implements the CmdCopyFNA interface. */ export declare function instanceOfCmdCopyFNA(value: object): value is CmdCopyFNA; export declare function CmdCopyFNAFromJSON(json: any): CmdCopyFNA; export declare function CmdCopyFNAFromJSONTyped(json: any, ignoreDiscriminator: boolean): CmdCopyFNA; export declare function CmdCopyFNAToJSON(json: any): CmdCopyFNA; export declare function CmdCopyFNAToJSONTyped(value?: CmdCopyFNA | null, ignoreDiscriminator?: boolean): any;