Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 5.16 KB

simplepublicobjectinput.md

File metadata and controls

25 lines (20 loc) · 5.16 KB

SimplePublicObjectInput

Example Usage

import { SimplePublicObjectInput } from "mcp-hubspot/models/components";

let value: SimplePublicObjectInput = {
  properties: {
    "amount": "1500.00",
    "dealname": "Custom data integrations",
    "pipeline": "default",
    "closedate": "2019-12-07T16:50:06.678Z",
    "dealstage": "presentationscheduled",
    "hubspot_owner_id": "910901",
  },
};

Fields

Field Type Required Description Example
objectWriteTraceId string N/A
properties Record<string, string> ✔️ N/A {
"property_date": "1572480000000",
"property_radio": "option_1",
"property_number": "17",
"property_string": "value",
"property_checkbox": "false",
"property_dropdown": "choice_b",
"property_multiple_checkboxes": "chocolate;strawberry"
}