Skip to content

Latest commit

 

History

History
50 lines (24 loc) · 2.55 KB

NewProductFieldAllOf.md

File metadata and controls

50 lines (24 loc) · 2.55 KB

Pipedrive.NewProductFieldAllOf

Properties

Name Type Description Notes
name String Name of the field
options [Object] When field_type is either set or enum, possible options must be supplied as a JSON-encoded sequential array, for example: ["red","blue","lilac"] [optional]
fieldType String Type of the field.<dl class=&quot;fields-list&quot;><dt>varchar</dt><dd>Text (up to 255 characters)</dd><dt>varchar_auto</dt><dd>Autocomplete text (up to 255 characters)</dd><dt>text</dt><dd>Long text (up to 65k characters)</dd><dt>double</dt><dd>Numeric value</dd><dt>monetary</dt><dd>Monetary field (has a numeric value and a currency value)</dd><dt>date</dt><dd>Date (format YYYY-MM-DD)</dd><dt>set</dt><dd>Options field with a possibility of having multiple chosen options</dd><dt>enum</dt><dd>Options field with a single possible chosen option</dd><dt>user</dt><dd>User field (contains a user ID of another Pipedrive user)</dd><dt>org</dt><dd>Organization field (contains an organization ID which is stored on the same account)</dd><dt>people</dt><dd>Person field (contains a product ID which is stored on the same account)</dd><dt>phone</dt><dd>Phone field (up to 255 numbers and/or characters)</dd><dt>time</dt><dd>Time field (format HH:MM:SS)</dd><dt>timerange</dt><dd>Time-range field (has a start time and end time value, both HH:MM:SS)</dd><dt>daterange</dt><dd>Date-range field (has a start date and end date value, both YYYY-MM-DD)</dd><dt>address</dt><dd>Address field (autocompleted by Google Maps)</dd></dl>

Enum: FieldTypeEnum

  • varchar (value: "varchar")

  • varchar_auto (value: "varchar_auto")

  • text (value: "text")

  • double (value: "double")

  • monetary (value: "monetary")

  • date (value: "date")

  • set (value: "set")

  • enum (value: "enum")

  • user (value: "user")

  • org (value: "org")

  • people (value: "people")

  • phone (value: "phone")

  • time (value: "time")

  • timerange (value: "timerange")

  • daterange (value: "daterange")

  • address (value: "address")