UNPKG

buena-typescript-sdk

Version:

Official TypeScript SDK for Buena.ai API - LinkedIn automation and lead management

24 lines (19 loc) 4.74 kB
# Lead ## Example Usage ```typescript import { Lead } from "openapi"; let value: Lead = {}; ``` ## Fields | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | | `id` | *string* | :heavy_minus_sign: | Unique identifier for the lead | | `firstName` | *string* | :heavy_minus_sign: | First name of the lead | | `lastName` | *string* | :heavy_minus_sign: | Last name of the lead | | `email` | *string* | :heavy_minus_sign: | Email address of the lead | | `company` | *string* | :heavy_minus_sign: | Company name | | `title` | *string* | :heavy_minus_sign: | Job title | | `linkedinUrl` | *string* | :heavy_minus_sign: | LinkedIn profile URL | | `status` | [models.Status](../models/status.md) | :heavy_minus_sign: | Current status of the lead | | `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | When the lead was created | | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | When the lead was last updated |