import type * as Merge from "../../../index"; /** * # The Url Object * ### Description * The `Url` object is used to represent hyperlinks associated with the parent model. * ### Usage Example * Fetch from the `GET Candidate` endpoint and view their website urls. */ export interface UrlRequest { /** The site's url. */ value?: string; /** * The type of site. * * * `PERSONAL` - PERSONAL * * `COMPANY` - COMPANY * * `PORTFOLIO` - PORTFOLIO * * `BLOG` - BLOG * * `SOCIAL_MEDIA` - SOCIAL_MEDIA * * `OTHER` - OTHER * * `JOB_POSTING` - JOB_POSTING */ urlType?: Merge.ats.UrlRequestUrlType; integrationParams?: Record; linkedAccountParams?: Record; }