-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dca9af9
commit 2fd0195
Showing
7 changed files
with
313 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,296 @@ | ||
<?php | ||
/** | ||
* PostFinance Checkout SDK | ||
* | ||
* This library allows to interact with the PostFinance Checkout payment service. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
namespace PostFinanceCheckout\Sdk\Model; | ||
use \PostFinanceCheckout\Sdk\ObjectSerializer; | ||
|
||
/** | ||
* InvoiceReimbursementWithRefundReference model | ||
* | ||
* @category Class | ||
* @description | ||
* @package PostFinanceCheckout\Sdk | ||
* @author customweb GmbH | ||
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 | ||
*/ | ||
class InvoiceReimbursementWithRefundReference extends InvoiceReimbursement | ||
{ | ||
const DISCRIMINATOR = null; | ||
|
||
/** | ||
* The original name of the model. | ||
* | ||
* @var string | ||
*/ | ||
protected static $swaggerModelName = 'InvoiceReimbursementWithRefundReference'; | ||
|
||
/** | ||
* Array of property to type mappings. Used for (de)serialization | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $swaggerTypes = [ | ||
'refund_merchant_reference' => 'string' | ||
]; | ||
|
||
/** | ||
* Array of property to format mappings. Used for (de)serialization | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $swaggerFormats = [ | ||
'refund_merchant_reference' => null | ||
]; | ||
|
||
/** | ||
* Array of attributes where the key is the local name, | ||
* and the value is the original name | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $attributeMap = [ | ||
'refund_merchant_reference' => 'refundMerchantReference' | ||
]; | ||
|
||
/** | ||
* Array of attributes to setter functions (for deserialization of responses) | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $setters = [ | ||
'refund_merchant_reference' => 'setRefundMerchantReference' | ||
]; | ||
|
||
/** | ||
* Array of attributes to getter functions (for serialization of requests) | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $getters = [ | ||
'refund_merchant_reference' => 'getRefundMerchantReference' | ||
]; | ||
|
||
|
||
|
||
|
||
/** | ||
* Constructor | ||
* | ||
* @param mixed[] $data Associated array of property values | ||
* initializing the model | ||
*/ | ||
public function __construct(array $data = null) | ||
{ | ||
parent::__construct($data); | ||
|
||
|
||
$this->container['refund_merchant_reference'] = isset($data['refund_merchant_reference']) ? $data['refund_merchant_reference'] : null; | ||
|
||
} | ||
|
||
/** | ||
* Show all the invalid properties with reasons. | ||
* | ||
* @return array invalid properties with reasons | ||
*/ | ||
public function listInvalidProperties() | ||
{ | ||
$invalidProperties = parent::listInvalidProperties(); | ||
|
||
return $invalidProperties; | ||
} | ||
|
||
/** | ||
* Array of property to type mappings. Used for (de)serialization | ||
* | ||
* @return array | ||
*/ | ||
public static function swaggerTypes() | ||
{ | ||
return self::$swaggerTypes + parent::swaggerTypes(); | ||
} | ||
|
||
/** | ||
* Array of property to format mappings. Used for (de)serialization | ||
* | ||
* @return array | ||
*/ | ||
public static function swaggerFormats() | ||
{ | ||
return self::$swaggerFormats + parent::swaggerFormats(); | ||
} | ||
|
||
|
||
/** | ||
* Array of attributes where the key is the local name, | ||
* and the value is the original name | ||
* | ||
* @return array | ||
*/ | ||
public static function attributeMap() | ||
{ | ||
return parent::attributeMap() + self::$attributeMap; | ||
} | ||
|
||
/** | ||
* Array of attributes to setter functions (for deserialization of responses) | ||
* | ||
* @return array | ||
*/ | ||
public static function setters() | ||
{ | ||
return parent::setters() + self::$setters; | ||
} | ||
|
||
/** | ||
* Array of attributes to getter functions (for serialization of requests) | ||
* | ||
* @return array | ||
*/ | ||
public static function getters() | ||
{ | ||
return parent::getters() + self::$getters; | ||
} | ||
|
||
/** | ||
* The original name of the model. | ||
* | ||
* @return string | ||
*/ | ||
public function getModelName() | ||
{ | ||
return self::$swaggerModelName; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Validate all the properties in the model | ||
* return true if all passed | ||
* | ||
* @return bool True if all properties are valid | ||
*/ | ||
public function valid() | ||
{ | ||
return count($this->listInvalidProperties()) === 0; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Gets refund_merchant_reference | ||
* | ||
* @return string | ||
*/ | ||
public function getRefundMerchantReference() | ||
{ | ||
return $this->container['refund_merchant_reference']; | ||
} | ||
|
||
/** | ||
* Sets refund_merchant_reference | ||
* | ||
* @param string $refund_merchant_reference | ||
* | ||
* @return $this | ||
*/ | ||
public function setRefundMerchantReference($refund_merchant_reference) | ||
{ | ||
$this->container['refund_merchant_reference'] = $refund_merchant_reference; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Returns true if offset exists. False otherwise. | ||
* | ||
* @param integer $offset Offset | ||
* | ||
* @return boolean | ||
*/ | ||
#[\ReturnTypeWillChange] | ||
public function offsetExists($offset) | ||
{ | ||
return isset($this->container[$offset]); | ||
} | ||
|
||
/** | ||
* Gets offset. | ||
* | ||
* @param integer $offset Offset | ||
* | ||
* @return mixed | ||
*/ | ||
#[\ReturnTypeWillChange] | ||
public function offsetGet($offset) | ||
{ | ||
return isset($this->container[$offset]) ? $this->container[$offset] : null; | ||
} | ||
|
||
/** | ||
* Sets value based on offset. | ||
* | ||
* @param integer $offset Offset | ||
* @param mixed $value Value to be set | ||
* | ||
* @return void | ||
*/ | ||
#[\ReturnTypeWillChange] | ||
public function offsetSet($offset, $value) | ||
{ | ||
if (is_null($offset)) { | ||
$this->container[] = $value; | ||
} else { | ||
$this->container[$offset] = $value; | ||
} | ||
} | ||
|
||
/** | ||
* Unsets offset. | ||
* | ||
* @param integer $offset Offset | ||
* | ||
* @return void | ||
*/ | ||
#[\ReturnTypeWillChange] | ||
public function offsetUnset($offset) | ||
{ | ||
unset($this->container[$offset]); | ||
} | ||
|
||
/** | ||
* Gets the string presentation of the object | ||
* | ||
* @return string | ||
*/ | ||
public function __toString() | ||
{ | ||
if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print | ||
return json_encode( | ||
ObjectSerializer::sanitizeForSerialization($this), | ||
JSON_PRETTY_PRINT | ||
); | ||
} | ||
|
||
return json_encode(ObjectSerializer::sanitizeForSerialization($this)); | ||
} | ||
} | ||
|
||
|
Oops, something went wrong.