Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/versions/v2/Model/DealItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class DealItem implements ModelInterface, ArrayAccess, JsonSerializable
'arr' => 'float',
'mrr' => 'float',
'acv' => 'float',
'custom_fields' => 'array<string,OneOfStringNumberMap>'
'custom_fields' => 'array<string,object>'
];

/**
Expand Down Expand Up @@ -1131,7 +1131,7 @@ public function setAcv($acv): self
/**
* Gets custom_fields
*
* @return array<string,OneOfStringNumberMap>|null
* @return array<string,object>|null
*/
public function getCustomFields()
{
Expand All @@ -1141,7 +1141,7 @@ public function getCustomFields()
/**
* Sets custom_fields
*
* @param array<string,OneOfStringNumberMap>|null $custom_fields A map of custom fields with hash-based keys
* @param array<string,object>|null $custom_fields A map of custom fields with hash-based keys
*
* @return self
*/
Expand Down
6 changes: 3 additions & 3 deletions lib/versions/v2/Model/OrganizationItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class OrganizationItem implements ModelInterface, ArrayAccess, JsonSerializable
'visible_to' => 'int',
'address' => '\Pipedrive\versions\v2\Model\OrganizationItemAddress',
'label_ids' => 'int[]',
'custom_fields' => 'array<string,OneOfStringNumberMap>'
'custom_fields' => 'array<string,object>'
];

/**
Expand Down Expand Up @@ -501,7 +501,7 @@ public function setLabelIds($label_ids): self
/**
* Gets custom_fields
*
* @return array<string,OneOfStringNumberMap>|null
* @return array<string,object>|null
*/
public function getCustomFields()
{
Expand All @@ -511,7 +511,7 @@ public function getCustomFields()
/**
* Sets custom_fields
*
* @param array<string,OneOfStringNumberMap>|null $custom_fields A map of custom fields with hash-based keys
* @param array<string,object>|null $custom_fields A map of custom fields with hash-based keys
*
* @return self
*/
Expand Down
6 changes: 3 additions & 3 deletions lib/versions/v2/Model/PersonItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class PersonItem implements ModelInterface, ArrayAccess, JsonSerializable
'im' => '\Pipedrive\versions\v2\Model\PersonItemIm[]',
'birthday' => 'string',
'job_title' => 'string',
'custom_fields' => 'array<string,OneOfStringNumberMap>'
'custom_fields' => 'array<string,object>'
];

/**
Expand Down Expand Up @@ -801,7 +801,7 @@ public function setJobTitle($job_title): self
/**
* Gets custom_fields
*
* @return array<string,OneOfStringNumberMap>|null
* @return array<string,object>|null
*/
public function getCustomFields()
{
Expand All @@ -811,7 +811,7 @@ public function getCustomFields()
/**
* Sets custom_fields
*
* @param array<string,OneOfStringNumberMap>|null $custom_fields A map of custom fields with hash-based keys
* @param array<string,object>|null $custom_fields A map of custom fields with hash-based keys
*
* @return self
*/
Expand Down