export type messagechannel_CreateMessageChannelRequest = { /** * ClientID is the client id for an individual channel. Alternative to membershipEntityId. */ clientId?: string; /** * CompanyID is the company id for a company channel, or to disambiguate a client that belongs to multiple companies. */ companyId?: string; /** * MemberIds are the client user ids to include. Required for group channels. */ memberIds?: Array; /** * MembershipEntityId is the company id (company channel) or client id (individual channel) the channel is scoped to. */ membershipEntityId?: string; /** * MembershipType is the kind of channel to create. */ membershipType: messagechannel_CreateMessageChannelRequest.membershipType; }; export declare namespace messagechannel_CreateMessageChannelRequest { /** * MembershipType is the kind of channel to create. */ enum membershipType { COMPANY = "company", INDIVIDUAL = "individual", GROUP = "group" } }