import { ApplicationContact } from './contactTypesV2'; import { ApplicationPaginatedResults } from './paginationTypesV2'; export interface ApplicationRecipient { /** Handle of the recipient. */ handle: string; /** Name of the recipient. */ name: string | undefined; /** The corresponding contact, if any. */ contact: ApplicationContact | undefined; /** The type of the handle */ type: string; } export type ApplicationRecipientList = ApplicationPaginatedResults;