UNPKG

lightrail-client

Version:
13 lines (12 loc) 343 B
import { Contact } from "../../model"; import { LightrailResponse } from "../LightrailResponse"; export interface CreateContactParams { id: string; firstName?: string; lastName?: string; email?: string; tags?: string[]; metadata?: object; } export interface CreateContactResponse extends LightrailResponse<Contact> { }