/** * 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. */ import { BusinessAccount } from './businessAccount'; import { Role } from './role'; import { TeamMemberStatus } from './teamMemberStatus'; import { UserAccount } from './userAccount'; export declare class TeamMember { /** * Unique identifier for the team member. */ 'id'?: string; 'userAccount'?: UserAccount; 'businessAccount'?: BusinessAccount; 'status'?: TeamMemberStatus; /** * Timestamp indicating when the member joined the team. */ 'joinedAt'?: Date; /** * Timestamp for when the member was removed or deleted from the team (optional). */ 'deletedAt'?: Date; /** * Metadata in JSON format, allowing additional structured data (optional). */ 'metadata'?: object; 'roles'?: Array; 'lastActive'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace TeamMember { }