import type UserRole from "../enums/user_role"; import type { DateLike, ModifyPartial } from "type_aliases"; import { ApiInvitation } from "./api_invitation"; import { ApiUserRole } from "./api_user_role"; export declare type ApiOrganizationMemberArgument = ModifyPartial; export declare class ApiOrganizationMember { id: number; name: string; email: string; legacyRole: UserRole; accountCreatedAt: number; accountAcceptedAt: number; invitations: ApiInvitation[]; userRoles: ApiUserRole[]; constructor({ id, name, email, legacyRole, accountCreatedAt, accountAcceptedAt, invitations, userRoles }?: ApiOrganizationMemberArgument); }