-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
1,921 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Pipedrive.GetField | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **Number** | The ID of the field. Value is `null` in case of subfields. | [optional] | ||
**key** | **String** | The key of the field. For custom fields this is generated upon creation. | [optional] | ||
**name** | **String** | The name of the field | [optional] | ||
**order_nr** | **Number** | The order number of the field | [optional] | ||
**field_type** | [**InternalFieldType**](InternalFieldType.md) | | [optional] | ||
**add_time** | **Date** | The creation time of the field | [optional] | ||
**update_time** | **Date** | The update time of the field | [optional] | ||
**last_updated_by_user_id** | **Number** | The ID of the user who created or most recently updated the field, only applicable for custom fields | [optional] | ||
**created_by_user_id** | **Number** | The ID of the user who created the field | [optional] | ||
**active_flag** | **Boolean** | The active flag of the field | [optional] | ||
**edit_flag** | **Boolean** | The edit flag of the field | [optional] | ||
**index_visible_flag** | **Boolean** | Not used | [optional] | ||
**details_visible_flag** | **Boolean** | Not used | [optional] | ||
**add_visible_flag** | **Boolean** | Not used | [optional] | ||
**important_flag** | **Boolean** | Not used | [optional] | ||
**bulk_edit_allowed** | **Boolean** | Whether or not the field of an item can be edited in bulk | [optional] | ||
**searchable_flag** | **Boolean** | Whether or not items can be searched by this field | [optional] | ||
**filtering_allowed** | **Boolean** | Whether or not items can be filtered by this field | [optional] | ||
**sortable_flag** | **Boolean** | Whether or not items can be sorted by this field | [optional] | ||
**mandatory_flag** | **Boolean** | Whether or not the field is mandatory | [optional] | ||
**options** | **[Object]** | The options of the field. When there are no options, `null` is returned. | [optional] | ||
**options_deleted** | **[Object]** | The deleted options of the field. Only present when there is at least 1 deleted option. | [optional] | ||
**is_subfield** | **Boolean** | Whether or not the field is a subfield of another field. Only present if field is subfield. | [optional] | ||
**subfields** | **[Object]** | The subfields of the field. Only present when the field has subfields. | [optional] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Pipedrive.GetFieldAllOf | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**field_type** | [**InternalFieldType**](InternalFieldType.md) | | [optional] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Pipedrive.GetNoteField | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **Number** | The ID of the field | [optional] | ||
**key** | **String** | The key of the field | [optional] | ||
**name** | **String** | The name of the field | [optional] | ||
**field_type** | [**InternalFieldType**](InternalFieldType.md) | | [optional] | ||
**active_flag** | **Boolean** | The active flag of the field | [optional] | ||
**edit_flag** | **Boolean** | The edit flag of the field | [optional] | ||
**bulk_edit_allowed** | **Boolean** | Not used | [optional] | ||
**mandatory_flag** | **Boolean** | Whether or not the field is mandatory | [optional] | ||
**options** | [**[NoteFieldOptions]**](NoteFieldOptions.md) | The options of the field. When there are no options, `null` is returned. | [optional] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Pipedrive.GetProductField | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **String** | The 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:</br>`[{\"label\":\"red\"}, {\"label\":\"blue\"}, {\"label\":\"lilac\"}]` | [optional] | ||
**field_type** | [**InternalFieldType**](InternalFieldType.md) | | | ||
**id** | **Number** | The ID of the product field | [optional] | ||
**key** | **String** | The key of the product field | [optional] | ||
**order_nr** | **Number** | The position (index) of the product field in the detail view | [optional] | ||
**add_time** | **String** | The product field creation time. Format: YYYY-MM-DD HH:MM:SS | [optional] | ||
**update_time** | **String** | The product field last update time. Format: YYYY-MM-DD HH:MM:SS | [optional] | ||
**last_updated_by_user_id** | **Number** | The ID of the last user to update the product field | [optional] | ||
**created_by_user_id** | **Number** | The ID of the user who created the product field | [optional] | ||
**active_flag** | **Boolean** | Whether or not the product field is currently active | [optional] | ||
**edit_flag** | **Boolean** | Whether or not the product field name and metadata is editable | [optional] | ||
**add_visible_flag** | **Boolean** | Whether or not the product field is visible in the Add Product Modal | [optional] | ||
**important_flag** | **Boolean** | Whether or not the product field is marked as important | [optional] | ||
**bulk_edit_allowed** | **Boolean** | Whether or not the product field data can be edited | [optional] | ||
**searchable_flag** | **Boolean** | Whether or not the product field is searchable | [optional] | ||
**filtering_allowed** | **Boolean** | Whether or not the product field value can be used when filtering searches | [optional] | ||
**sortable_flag** | **Boolean** | Whether or not the product field is sortable | [optional] | ||
**mandatory_flag** | **Boolean** | Whether or not the product field is mandatory when creating products | [optional] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Pipedrive.InternalFieldType | ||
|
||
## Enum | ||
|
||
|
||
* `boolean` (value: `"boolean"`) | ||
|
||
* `double` (value: `"double"`) | ||
|
||
* `int` (value: `"int"`) | ||
|
||
* `json` (value: `"json"`) | ||
|
||
* `date` (value: `"date"`) | ||
|
||
* `daterange` (value: `"daterange"`) | ||
|
||
* `time` (value: `"time"`) | ||
|
||
* `timerange` (value: `"timerange"`) | ||
|
||
* `text` (value: `"text"`) | ||
|
||
* `varchar` (value: `"varchar"`) | ||
|
||
* `varchar_auto` (value: `"varchar_auto"`) | ||
|
||
* `varchar_options` (value: `"varchar_options"`) | ||
|
||
* `address` (value: `"address"`) | ||
|
||
* `enum` (value: `"enum"`) | ||
|
||
* `monetary` (value: `"monetary"`) | ||
|
||
* `phone` (value: `"phone"`) | ||
|
||
* `set` (value: `"set"`) | ||
|
||
* `activity` (value: `"activity"`) | ||
|
||
* `deal` (value: `"deal"`) | ||
|
||
* `lead` (value: `"lead"`) | ||
|
||
* `org` (value: `"org"`) | ||
|
||
* `people` (value: `"people"`) | ||
|
||
* `pipeline` (value: `"pipeline"`) | ||
|
||
* `product` (value: `"product"`) | ||
|
||
* `project` (value: `"project"`) | ||
|
||
* `stage` (value: `"stage"`) | ||
|
||
* `user` (value: `"user"`) | ||
|
||
* `billing_frequency` (value: `"billing_frequency"`) | ||
|
||
* `picture` (value: `"picture"`) | ||
|
||
* `price_list` (value: `"price_list"`) | ||
|
||
* `projects_board` (value: `"projects_board"`) | ||
|
||
* `projects_phase` (value: `"projects_phase"`) | ||
|
||
* `status` (value: `"status"`) | ||
|
||
* `visible_to` (value: `"visible_to"`) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.