import { ConversationOtherMemberUpdateData } from './data'; import { QualifiedId } from '../user/QualifiedId'; import { ServiceRef } from './'; export interface OtherMember extends Partial { /** The user ID. */ id: string; qualified_id?: QualifiedId; /** The reference to the owning provider, if the member is a service. */ service?: ServiceRef; /** * The member status. Currently this is always 0, indicating a regular member. * Other status values might be used in the future */ status: SERVICE_MEMBER_STATUS; } export declare enum SERVICE_MEMBER_STATUS { REGULAR_MEMBER = 0 } //# sourceMappingURL=OtherMember.d.ts.map