import type * as Pinnacle from "../../../../index.mjs"; /** * @example * { * description: "Retired", * email: "alvaroopedtech@pinnacle.sh", * name: "Retired Bestie", * tags: ["friend"], * id: "co_1234567890" * } */ export interface UpdateContactParams extends Pinnacle.OptionalContact { /** ID of the contact you want to update. This identifier is a string that always begins with the prefix `co_`, for example: `co_1234567890`. */ id: string; }