/** * 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 { EmailValidationSignedToken } from './EmailValidationSignedToken'; /** * Information needed to start the process of creating a new account. * @export * @interface AccountCreationToken */ export interface AccountCreationToken { /** * * @type {EmailValidationSignedToken} * @memberof AccountCreationToken */ emailValidationSignedToken?: EmailValidationSignedToken; /** * Encoded signed token containing the information needed to retrieve a membership invitation. * @type {string} * @memberof AccountCreationToken */ encodedMembershipInvtnSignedToken?: string; } /** * Check if a given object implements the AccountCreationToken interface. */ export declare function instanceOfAccountCreationToken(value: object): value is AccountCreationToken; export declare function AccountCreationTokenFromJSON(json: any): AccountCreationToken; export declare function AccountCreationTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountCreationToken; export declare function AccountCreationTokenToJSON(json: any): AccountCreationToken; export declare function AccountCreationTokenToJSONTyped(value?: AccountCreationToken | null, ignoreDiscriminator?: boolean): any;