HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.ydrbh.com/PayPal/Api/PrivateLabelCard.php
<?php

namespace PayPal\Api;

use PayPal\Common\PayPalModel;

/**
 * Class PrivateLabelCard
 *
 * A resource representing a type of merchant branded payment card. To promote customer value (convenience and earning rewards) and retailer value (merchants drive business using the store cards), PayPal will support as payment method.
 *
 * @package PayPal\Api
 *
 * @property string id
 * @property string card_number
 * @property string issuer_id
 * @property string issuer_name
 * @property string image_key
 */
class PrivateLabelCard extends PayPalModel
{
    /**
     * encrypted identifier of the private label card instrument.
     *
     * @param string $id
     * 
     * @return $this
     */
    public function setId($id)
    {
        $this->id = $id;
        return $this;
    }

    /**
     * encrypted identifier of the private label card instrument.
     *
     * @return string
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * last 4 digits of the card number.
     *
     * @param string $card_number
     * 
     * @return $this
     */
    public function setCardNumber($card_number)
    {
        $this->card_number = $card_number;
        return $this;
    }

    /**
     * last 4 digits of the card number.
     *
     * @return string
     */
    public function getCardNumber()
    {
        return $this->card_number;
    }

    /**
     * Merchants providing private label store cards have associated issuer account. This value indicates encrypted account number of the associated issuer account.
     *
     * @param string $issuer_id
     * 
     * @return $this
     */
    public function setIssuerId($issuer_id)
    {
        $this->issuer_id = $issuer_id;
        return $this;
    }

    /**
     * Merchants providing private label store cards have associated issuer account. This value indicates encrypted account number of the associated issuer account.
     *
     * @return string
     */
    public function getIssuerId()
    {
        return $this->issuer_id;
    }

    /**
     * Merchants providing private label store cards have associated issuer account. This value indicates name on the issuer account.
     *
     * @param string $issuer_name
     * 
     * @return $this
     */
    public function setIssuerName($issuer_name)
    {
        $this->issuer_name = $issuer_name;
        return $this;
    }

    /**
     * Merchants providing private label store cards have associated issuer account. This value indicates name on the issuer account.
     *
     * @return string
     */
    public function getIssuerName()
    {
        return $this->issuer_name;
    }

    /**
     * This value indicates URL to access PLCC program logo image
     *
     * @param string $image_key
     * 
     * @return $this
     */
    public function setImageKey($image_key)
    {
        $this->image_key = $image_key;
        return $this;
    }

    /**
     * This value indicates URL to access PLCC program logo image
     *
     * @return string
     */
    public function getImageKey()
    {
        return $this->image_key;
    }

}