/** * This file was auto-generated by Fern from our API Definition. */ /** * Salesforce Lead object with comprehensive field support */ export interface SalesforceLead { /** First name */ FirstName?: string; /** Last name (required) */ LastName: string; /** Company name (required) */ Company: string; /** Email address */ Email?: string; /** Phone number */ Phone?: string; /** Mobile phone number */ MobilePhone?: string; /** Job title */ Title?: string; /** Lead status (e.g., Open, Contacted, Qualified) */ Status?: string; /** Lead source (e.g., Web, Phone Inquiry, Partner Referral) */ LeadSource?: string; /** Industry (e.g., Technology, Healthcare, Finance) */ Industry?: string; /** Lead rating (e.g., Hot, Warm, Cold) */ Rating?: string; /** Street address */ Street?: string; /** City */ City?: string; /** State/province */ State?: string; /** Postal code */ PostalCode?: string; /** Country */ Country?: string; /** Website URL */ Website?: string; /** Lead description */ Description?: string; /** Number of employees */ NumberOfEmployees?: number; /** Annual revenue */ AnnualRevenue?: number; }