Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 6.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins committed Aug 30, 2019
1 parent 03f149c commit 6d5460f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Ingenico/Connect/Sdk/RequestHeaderGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
class RequestHeaderGenerator
{
const SDK_VERSION = '6.3.0';
const SDK_VERSION = '6.4.0';

const AUTHORIZATION_ID = 'GCS';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ class SepaDirectDebitPaymentMethodSpecificOutput extends AbstractPaymentMethodSp
*/
public $paymentProduct771SpecificOutput = null;

/**
* @var string
*/
public $token = null;

/**
* @return object
*/
Expand All @@ -35,6 +40,9 @@ public function toObject()
if (!is_null($this->paymentProduct771SpecificOutput)) {
$object->paymentProduct771SpecificOutput = $this->paymentProduct771SpecificOutput->toObject();
}
if (!is_null($this->token)) {
$object->token = $this->token;
}
return $object;
}

Expand All @@ -60,6 +68,9 @@ public function fromObject($object)
$value = new PaymentProduct771SpecificOutput();
$this->paymentProduct771SpecificOutput = $value->fromObject($object->paymentProduct771SpecificOutput);
}
if (property_exists($object, 'token')) {
$this->token = $object->token;
}
return $this;
}
}

0 comments on commit 6d5460f

Please sign in to comment.