Skip to content

Commit

Permalink
added createEmailSendingDomain2 to support additional MTAs
Browse files Browse the repository at this point in the history
  • Loading branch information
perrytew committed Mar 26, 2024
1 parent a886cfd commit 247cd77
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -1504,6 +1504,7 @@ Not every change is committed to every SDK.

| Version | Date | Comments |
| --: | :-: | --- |
| 4.0.208 | 03/26/2024 | WorkflowTask - added assigned_to_user_or_group field |
| 4.0.207 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
| 4.0.206 | 03/25/2024 | added sales_rep_code to Channel partner order |
| 4.0.205 | 03/19/2024 | workflow task - method to obtain open task count |
Expand Down
1 change: 1 addition & 0 deletions docs/Model/WorkflowTask.md
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**assigned_to_group_id** | **int** | Assigned to group ID | [optional]
**assigned_to_user** | **string** | Assigned to user | [optional]
**assigned_to_user_id** | **int** | Assigned to user ID | [optional]
**assigned_to_user_or_group** | **string** | Assigned to user or group (used for sorting) | [optional]
**attachments** | [**\ultracart\v2\models\WorkflowAttachment[]**](WorkflowAttachment.md) | Attachments to the Workflow Task | [optional]
**created_by** | [**\ultracart\v2\models\WorkflowUser**](WorkflowUser.md) | | [optional]
**created_dts** | **string** | Date/time that the workflow task was created | [optional]
Expand Down
30 changes: 30 additions & 0 deletions lib/models/WorkflowTask.php
Expand Up @@ -62,6 +62,7 @@ class WorkflowTask implements ModelInterface, ArrayAccess, \JsonSerializable
'assigned_to_group_id' => 'int',
'assigned_to_user' => 'string',
'assigned_to_user_id' => 'int',
'assigned_to_user_or_group' => 'string',
'attachments' => '\ultracart\v2\models\WorkflowAttachment[]',
'created_by' => '\ultracart\v2\models\WorkflowUser',
'created_dts' => 'string',
Expand Down Expand Up @@ -103,6 +104,7 @@ class WorkflowTask implements ModelInterface, ArrayAccess, \JsonSerializable
'assigned_to_group_id' => 'int32',
'assigned_to_user' => null,
'assigned_to_user_id' => 'int32',
'assigned_to_user_or_group' => null,
'attachments' => null,
'created_by' => null,
'created_dts' => 'dateTime',
Expand Down Expand Up @@ -163,6 +165,7 @@ public static function openAPIFormats()
'assigned_to_group_id' => 'assigned_to_group_id',
'assigned_to_user' => 'assigned_to_user',
'assigned_to_user_id' => 'assigned_to_user_id',
'assigned_to_user_or_group' => 'assigned_to_user_or_group',
'attachments' => 'attachments',
'created_by' => 'created_by',
'created_dts' => 'created_dts',
Expand Down Expand Up @@ -202,6 +205,7 @@ public static function openAPIFormats()
'assigned_to_group_id' => 'setAssignedToGroupId',
'assigned_to_user' => 'setAssignedToUser',
'assigned_to_user_id' => 'setAssignedToUserId',
'assigned_to_user_or_group' => 'setAssignedToUserOrGroup',
'attachments' => 'setAttachments',
'created_by' => 'setCreatedBy',
'created_dts' => 'setCreatedDts',
Expand Down Expand Up @@ -241,6 +245,7 @@ public static function openAPIFormats()
'assigned_to_group_id' => 'getAssignedToGroupId',
'assigned_to_user' => 'getAssignedToUser',
'assigned_to_user_id' => 'getAssignedToUserId',
'assigned_to_user_or_group' => 'getAssignedToUserOrGroup',
'attachments' => 'getAttachments',
'created_by' => 'getCreatedBy',
'created_dts' => 'getCreatedDts',
Expand Down Expand Up @@ -419,6 +424,7 @@ public function __construct(array $data = null)
$this->container['assigned_to_group_id'] = $data['assigned_to_group_id'] ?? null;
$this->container['assigned_to_user'] = $data['assigned_to_user'] ?? null;
$this->container['assigned_to_user_id'] = $data['assigned_to_user_id'] ?? null;
$this->container['assigned_to_user_or_group'] = $data['assigned_to_user_or_group'] ?? null;
$this->container['attachments'] = $data['attachments'] ?? null;
$this->container['created_by'] = $data['created_by'] ?? null;
$this->container['created_dts'] = $data['created_dts'] ?? null;
Expand Down Expand Up @@ -604,6 +610,30 @@ public function setAssignedToUserId($assigned_to_user_id)
return $this;
}

/**
* Gets assigned_to_user_or_group
*
* @return string|null
*/
public function getAssignedToUserOrGroup()
{
return $this->container['assigned_to_user_or_group'];
}

/**
* Sets assigned_to_user_or_group
*
* @param string|null $assigned_to_user_or_group Assigned to user or group (used for sorting)
*
* @return self
*/
public function setAssignedToUserOrGroup($assigned_to_user_or_group)
{
$this->container['assigned_to_user_or_group'] = $assigned_to_user_or_group;

return $this;
}

/**
* Gets attachments
*
Expand Down
2 changes: 1 addition & 1 deletion uc_tag.sh
@@ -1,3 +1,3 @@
#!/bin/sh
git tag 4.0.206
git tag 4.0.207
git push --tags origin

0 comments on commit 247cd77

Please sign in to comment.