/** * 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. */ /** * Move user response * @export * @interface UserMoveUserResponse */ export interface UserMoveUserResponse { /** * User account uuid of the moved user * @type {string} * @memberof UserMoveUserResponse */ userUuid: string; /** * Account organization uuid of the destination organization * @type {string} * @memberof UserMoveUserResponse */ organizationUuid: string; /** * False when the user was already in the destination organization * @type {boolean} * @memberof UserMoveUserResponse */ moved: boolean; } /** * Check if a given object implements the UserMoveUserResponse interface. */ export declare function instanceOfUserMoveUserResponse(value: object): value is UserMoveUserResponse; export declare function UserMoveUserResponseFromJSON(json: any): UserMoveUserResponse; export declare function UserMoveUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserMoveUserResponse; export declare function UserMoveUserResponseToJSON(json: any): UserMoveUserResponse; export declare function UserMoveUserResponseToJSONTyped(value?: UserMoveUserResponse | null, ignoreDiscriminator?: boolean): any;