/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Defines a message named GetMergeLinkTokenRequest. */ export declare class GetMergeLinkTokenRequest { /** * This unique identifier typically represents the ID for your end user across all services. This value must be distinct from other Linked Accounts\' unique identifiers. */ 'authZeroUserId': string; /** * Your end user\'s organization. */ 'organizationName': string; /** * Your end user\'s email address. This is purely for identification purposes - setting this value will not cause any emails to be sent. */ 'email': string; 'orgId': string; 'tenantId': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }