/** * 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 { OrganizationMemberStatus } from './organizationMemberStatus'; import { PermissionType } from './permissionType'; import { Role } from './role'; export declare class OrgMember { /** * Unique identifier for the organization member. */ 'id'?: string; 'role'?: Role; /** * Email of the member. */ 'email': string; /** * Name of the member. */ 'name': string; /** * Timestamp when the member joined. */ 'joinedAt'?: Date; /** * email of the account that invited the member. */ 'invitedByEmail'?: string; 'status'?: OrganizationMemberStatus; /** * Timestamp of the last access. */ 'lastAccess'?: Date; /** * Permissions assigned to the member. */ 'permissions'?: Array; /** * Timestamp when the member was soft-deleted. */ 'deletedAt'?: 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 OrgMember { }