import type { forms_RecipientInfo } from './forms_RecipientInfo'; export type forms_SendFormRequest = { /** * Client/company pairs to assign the form to. Required when clientIds is omitted. */ clientCompanyIds?: Array; /** * Client IDs to assign the form to. Required when clientCompanyIds is omitted. */ clientIds?: Array; /** * ID of the form to assign. */ formId: string; };