File "PaymentInstrumentRecurring.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/cardinity/cardinity-sdk-php/src/Method/Payment/PaymentInstrumentRecurring.php
File size: 691 B (691 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php

namespace Cardinity\Method\Payment;

use Cardinity\Method\ResultObject;

class PaymentInstrumentRecurring extends ResultObject implements PaymentInstrumentInterface
{
    /** @type string Id of the approved payment in the past.
        Same card will be used to create a new payment. */
    private $paymentId;
 
    /**
     * Gets the value of paymentId.
     * @return mixed
     */
    public function getPaymentId()
    {
        return $this->paymentId;
    }
 
    /**
     * Sets the value of paymentId.
     * @param mixed $paymentId the payment id
     * @return void
     */
    public function setPaymentId($paymentId)
    {
        $this->paymentId = $paymentId;
    }
}