Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrowanwallee committed Aug 8, 2022
1 parent dca9af9 commit 2fd0195
Show file tree
Hide file tree
Showing 7 changed files with 313 additions and 17 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postfinancecheckout/sdk",
"version": "3.0.3",
"version": "3.1.1",
"description": "PostFinance Checkout SDK for PHP",
"keywords": [
"postfinancecheckout",
Expand Down
2 changes: 1 addition & 1 deletion lib/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ final class ApiClient {
*
* @var string
*/
private $userAgent = 'PHP-Client/3.0.3/php';
private $userAgent = 'PHP-Client/3.1.1/php';

/**
* The path to the certificate authority file.
Expand Down
6 changes: 3 additions & 3 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'PostFinanceCheckout\Sdk/3.0.3/php';
protected $userAgent = 'PostFinanceCheckout\Sdk/3.1.1/php';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -388,8 +388,8 @@ public static function toDebugReport()
$report = 'PHP SDK (PostFinanceCheckout\Sdk) Debug Report:' . PHP_EOL;
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' OpenAPI Spec Version: 3.0.3' . PHP_EOL;
$report .= ' SDK Package Version: 3.0.3' . PHP_EOL;
$report .= ' OpenAPI Spec Version: 3.1.1' . PHP_EOL;
$report .= ' SDK Package Version: 3.1.1' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
8 changes: 4 additions & 4 deletions lib/Model/AbstractTransactionPending.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class AbstractTransactionPending implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerTypes = [
'allowed_payment_method_brands' => '\PostFinanceCheckout\Sdk\Model\PaymentMethodBrand[]',
'allowed_payment_method_brands' => 'int[]',
'allowed_payment_method_configurations' => 'int[]',
'billing_address' => '\PostFinanceCheckout\Sdk\Model\AddressCreate',
'completion_behavior' => '\PostFinanceCheckout\Sdk\Model\TransactionCompletionBehavior',
Expand All @@ -75,7 +75,7 @@ class AbstractTransactionPending implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerFormats = [
'allowed_payment_method_brands' => null,
'allowed_payment_method_brands' => 'int64',
'allowed_payment_method_configurations' => 'int64',
'billing_address' => null,
'completion_behavior' => null,
Expand Down Expand Up @@ -360,7 +360,7 @@ public function valid()
/**
* Gets allowed_payment_method_brands
*
* @return \PostFinanceCheckout\Sdk\Model\PaymentMethodBrand[]
* @return int[]
*/
public function getAllowedPaymentMethodBrands()
{
Expand All @@ -370,7 +370,7 @@ public function getAllowedPaymentMethodBrands()
/**
* Sets allowed_payment_method_brands
*
* @param \PostFinanceCheckout\Sdk\Model\PaymentMethodBrand[] $allowed_payment_method_brands
* @param int[] $allowed_payment_method_brands
*
* @return $this
*/
Expand Down
296 changes: 296 additions & 0 deletions lib/Model/InvoiceReimbursementWithRefundReference.php
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));
}
}


Loading

0 comments on commit 2fd0195

Please sign in to comment.