export type filechannel_CreateFileChannelInput = { /** * Client to create an individual channel for (new schema). */ clientId?: string; /** * Company to create a company-wide channel for (new schema). */ companyId?: string; /** * Member ids for a group channel (new schema, used with membershipType=group). */ memberIds?: Array; /** * Id of the entity (client or company) the channel is based on (deprecated legacy schema). */ membershipEntityId?: string; /** * Channel grouping type. */ membershipType?: filechannel_CreateFileChannelInput.membershipType; }; export declare namespace filechannel_CreateFileChannelInput { /** * Channel grouping type. */ enum membershipType { INDIVIDUAL = "individual", COMPANY = "company", GROUP = "group" } }