/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ChangePasswordWithCurrentPassword } from './ChangePasswordWithCurrentPassword'; import type { ChangePasswordWithToken } from './ChangePasswordWithToken'; import type { ChangePasswordWithTwoFactorAuthToken } from './ChangePasswordWithTwoFactorAuthToken'; /** * @type ChangePasswordInterface * Defines an interface for changing an user account's password * @export */ export type ChangePasswordInterface = { concreteType: 'org.sagebionetworks.repo.model.auth.ChangePasswordWithCurrentPassword'; } & ChangePasswordWithCurrentPassword | { concreteType: 'org.sagebionetworks.repo.model.auth.ChangePasswordWithToken'; } & ChangePasswordWithToken | { concreteType: 'org.sagebionetworks.repo.model.auth.ChangePasswordWithTwoFactorAuthToken'; } & ChangePasswordWithTwoFactorAuthToken; export declare function ChangePasswordInterfaceFromJSON(json: any): ChangePasswordInterface; export declare function ChangePasswordInterfaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangePasswordInterface; export declare function ChangePasswordInterfaceToJSON(json: any): any; export declare function ChangePasswordInterfaceToJSONTyped(value?: ChangePasswordInterface | null, ignoreDiscriminator?: boolean): any;