src/eBayEnterprise/RetailOrderManagement/Payload/Order/OrderHold.php 1 location
|
@@ 137-143 (lines=7) @@
|
134 |
|
. "<StatusDescription>{$this->xmlEncode($this->getStatusDescription())}</StatusDescription>"; |
135 |
|
} |
136 |
|
|
137 |
|
protected function deserializeExtra($serializedPayload) |
138 |
|
{ |
139 |
|
$xpath = $this->getPayloadAsXPath($serializedPayload); |
140 |
|
$holdDateValue = $xpath->evaluate('string(x:LastHoldTypeDate)'); |
141 |
|
$this->holdDate = $holdDateValue ? new DateTime($holdDateValue) : null; |
142 |
|
return $this; |
143 |
|
} |
144 |
|
|
145 |
|
protected function getRootNodeName() |
146 |
|
{ |
src/eBayEnterprise/RetailOrderManagement/Payload/Order/PayPalPayment.php 1 location
|
@@ 139-145 (lines=7) @@
|
136 |
|
. $this->getCustomAttributes()->serialize(); |
137 |
|
} |
138 |
|
|
139 |
|
protected function deserializeExtra($serializedPayload) |
140 |
|
{ |
141 |
|
$xpath = $this->getPayloadAsXPath($serializedPayload); |
142 |
|
$createTimestampValue = $xpath->evaluate('string(x:CreateTimeStamp)'); |
143 |
|
$this->createTimeStamp = $createTimestampValue ? new DateTime($createTimestampValue) : null; |
144 |
|
return $this; |
145 |
|
} |
146 |
|
|
147 |
|
protected function getRootNodeName() |
148 |
|
{ |
src/eBayEnterprise/RetailOrderManagement/Payload/Order/StoredValueCardPayment.php 1 location
|
@@ 128-134 (lines=7) @@
|
125 |
|
. $this->getCustomAttributes()->serialize(); |
126 |
|
} |
127 |
|
|
128 |
|
protected function deserializeExtra($serializedPayload) |
129 |
|
{ |
130 |
|
$xpath = $this->getPayloadAsXPath($serializedPayload); |
131 |
|
$createTimestampValue = $xpath->evaluate('string(x:CreateTimeStamp)'); |
132 |
|
$this->createTimeStamp = $createTimestampValue ? new DateTime($createTimestampValue) : null; |
133 |
|
return $this; |
134 |
|
} |
135 |
|
|
136 |
|
protected function getRootAttributes() |
137 |
|
{ |