Skip to content

Commit

Permalink
Connection identifier
Browse files Browse the repository at this point in the history
Connection identifier updates added to Order Update
  • Loading branch information
EffectConnect committed Nov 28, 2019
1 parent 0c632a2 commit 499e3ef
Showing 1 changed file with 82 additions and 1 deletion.
83 changes: 82 additions & 1 deletion EffectConnectSDK/Core/Model/Request/OrderUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,27 @@ final class OrderUpdate extends ApiModel implements ApiModelInterface
* @var string $_orderIdentifier
*/
protected $_orderIdentifier;

/**
* @var int $_connectionIdentifier
*
* Use this field to assign an identifier to your order
*/
protected $_connectionIdentifier;

/**
* @var string $_connectionInvoice
*
* Use this field to assign an invoice identifier to your order
*/
protected $_connectionInvoice;

/**
* @var string $_connectionNumber
*
* Use this field to assign a number to your order
*/
protected $_connectionNumber;
/**
* @var array $_addTags
*
Expand Down Expand Up @@ -107,6 +128,42 @@ public function removeTag($tag)
return $this;
}

/**
* @param int $connectionIdentifier
*
* @return OrderUpdate
*/
public function setConnectionIdentifier($connectionIdentifier)
{
$this->_connectionIdentifier = $connectionIdentifier;

return $this;
}

/**
* @param string $connectionInvoice
*
* @return OrderUpdate
*/
public function setConnectionInvoice($connectionInvoice)
{
$this->_connectionInvoice = $connectionInvoice;

return $this;
}

/**
* @param string $connectionNumber
*
* @return OrderUpdate
*/
public function setConnectionNumber($connectionNumber)
{
$this->_connectionNumber = $connectionNumber;

return $this;
}

/**
* @return string
*/
Expand Down Expand Up @@ -139,8 +196,32 @@ public function getRemoveTags()
return $this->_removeTags;
}

/**
* @return int
*/
public function getConnectionIdentifier()
{
return $this->_connectionIdentifier;
}

/**
* @return string
*/
public function getConnectionInvoice()
{
return $this->_connectionInvoice;
}

/**
* @return string
*/
public function getConnectionNumber()
{
return $this->_connectionNumber;
}

protected function isIterator()
{
return true;
}
}
}

0 comments on commit 499e3ef

Please sign in to comment.