/** * @example * { * id: "co_1234567890" * } */ export interface ContactsGetRequest { /** * Unique identifier of a specific contact you want to retrieve.
* * Either this parameter or `phoneNumber` must be provided, but not both. */ id?: string; /** Phone number you want to look up contact information for, provided in URL-encoded E.164 format with %2B prefix instead of +. */ phoneNumber?: string; }