/** * This file was auto-generated by Fern from our API Definition. */ import * as WorkOS from "../../../.."; /** * @example * { * limit: 10, * order: WorkOS.Order.Normal * } */ export interface ListOrganizationMembershipOpts { organizationID?: string; userID?: string; before?: string; after?: string; limit?: number; order?: WorkOS.Order; }