/** * This file was auto-generated by Fern from our API Definition. */ import * as WorkOS from "../../../.."; /** * @example * { * environmentID: "string", * limit: 10, * order: WorkOS.Order.Normal * } */ export interface ListOrganizationsOpts { domains?: string | string[]; environmentID?: string; search?: string; before?: string; after?: string; limit?: number; order?: WorkOS.Order; }