/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type LeadSource = { /** * Server-assigned id. Stable across renames. */ readonly id: number; /** * Platform the LeadSource belongs to. Set automatically from your credentials; you cannot pass another Platform's id. */ readonly platform: number; /** * Display name shown to sales reps when categorizing a Deal. */ name: string; /** * Stable slug used in API payloads and reports. Unique per Platform; lowercase letters, digits, and hyphens. */ code: string; /** * Free-form JSON for Platform-defined attributes. */ metadata?: any; /** * Creation timestamp. */ readonly created_at: string; /** * Last-modified timestamp. */ readonly updated_at: string; };