Skip to content
Merged
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
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/Api/CoreApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/ApiException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/FormDataProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/HeaderSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
56 changes: 28 additions & 28 deletions codegen/Crm/Schemas/Model/AssociationDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down Expand Up @@ -60,8 +60,8 @@ class AssociationDefinition implements ModelInterface, ArrayAccess, \JsonSeriali
protected static $openAPITypes = [
'created_at' => '\DateTime',
'from_object_type_id' => 'string',
'name' => 'string',
'id' => 'string',
'name' => 'string',
'to_object_type_id' => 'string',
'updated_at' => '\DateTime'
];
Expand All @@ -76,8 +76,8 @@ class AssociationDefinition implements ModelInterface, ArrayAccess, \JsonSeriali
protected static $openAPIFormats = [
'created_at' => 'date-time',
'from_object_type_id' => null,
'name' => null,
'id' => null,
'name' => null,
'to_object_type_id' => null,
'updated_at' => 'date-time'
];
Expand All @@ -90,8 +90,8 @@ class AssociationDefinition implements ModelInterface, ArrayAccess, \JsonSeriali
protected static array $openAPINullables = [
'created_at' => false,
'from_object_type_id' => false,
'name' => false,
'id' => false,
'name' => false,
'to_object_type_id' => false,
'updated_at' => false
];
Expand Down Expand Up @@ -184,8 +184,8 @@ public function isNullableSetToNull(string $property): bool
protected static $attributeMap = [
'created_at' => 'createdAt',
'from_object_type_id' => 'fromObjectTypeId',
'name' => 'name',
'id' => 'id',
'name' => 'name',
'to_object_type_id' => 'toObjectTypeId',
'updated_at' => 'updatedAt'
];
Expand All @@ -198,8 +198,8 @@ public function isNullableSetToNull(string $property): bool
protected static $setters = [
'created_at' => 'setCreatedAt',
'from_object_type_id' => 'setFromObjectTypeId',
'name' => 'setName',
'id' => 'setId',
'name' => 'setName',
'to_object_type_id' => 'setToObjectTypeId',
'updated_at' => 'setUpdatedAt'
];
Expand All @@ -212,8 +212,8 @@ public function isNullableSetToNull(string $property): bool
protected static $getters = [
'created_at' => 'getCreatedAt',
'from_object_type_id' => 'getFromObjectTypeId',
'name' => 'getName',
'id' => 'getId',
'name' => 'getName',
'to_object_type_id' => 'getToObjectTypeId',
'updated_at' => 'getUpdatedAt'
];
Expand Down Expand Up @@ -277,8 +277,8 @@ public function __construct(?array $data = null)
{
$this->setIfExists('created_at', $data ?? [], null);
$this->setIfExists('from_object_type_id', $data ?? [], null);
$this->setIfExists('name', $data ?? [], null);
$this->setIfExists('id', $data ?? [], null);
$this->setIfExists('name', $data ?? [], null);
$this->setIfExists('to_object_type_id', $data ?? [], null);
$this->setIfExists('updated_at', $data ?? [], null);
}
Expand Down Expand Up @@ -389,55 +389,55 @@ public function setFromObjectTypeId($from_object_type_id)
}

/**
* Gets name
* Gets id
*
* @return string|null
* @return string
*/
public function getName()
public function getId()
{
return $this->container['name'];
return $this->container['id'];
}

/**
* Sets name
* Sets id
*
* @param string|null $name A unique name for this association.
* @param string $id A unique ID for this association.
*
* @return self
*/
public function setName($name)
public function setId($id)
{
if (is_null($name)) {
throw new \InvalidArgumentException('non-nullable name cannot be null');
if (is_null($id)) {
throw new \InvalidArgumentException('non-nullable id cannot be null');
}
$this->container['name'] = $name;
$this->container['id'] = $id;

return $this;
}

/**
* Gets id
* Gets name
*
* @return string
* @return string|null
*/
public function getId()
public function getName()
{
return $this->container['id'];
return $this->container['name'];
}

/**
* Sets id
* Sets name
*
* @param string $id A unique ID for this association.
* @param string|null $name A unique name for this association.
*
* @return self
*/
public function setId($id)
public function setName($name)
{
if (is_null($id)) {
throw new \InvalidArgumentException('non-nullable id cannot be null');
if (is_null($name)) {
throw new \InvalidArgumentException('non-nullable name cannot be null');
}
$this->container['id'] = $id;
$this->container['name'] = $name;

return $this;
}
Expand Down
2 changes: 1 addition & 1 deletion codegen/Crm/Schemas/Model/AssociationDefinitionEgg.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: v3
* Generated by: https://openapi-generator.tech
* Generator version: 7.17.0
* Generator version: 7.19.0
*/

/**
Expand Down
Loading