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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/mollie/mollie-api-php/src/Resources/   drwxr-xr-x
Free 12.94 GB of 57.97 GB (22.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Mollie\Api\Resources;

class 
PaymentLink extends BaseResource
{
    
/**
     * @var string
     */
    
public $resource;

    
/**
     * Id of the payment link (on the Mollie platform).
     *
     * @var string
     */
    
public $id;

    
/**
     * Mode of the payment link, either "live" or "test" depending on the API Key that was
     * used.
     *
     * @var string
     */
    
public $mode;

    
/**
     * The profile ID this payment link belongs to.
     *
     * @example pfl_QkEhN94Ba
     * @var string
     */
    
public $profileId;

    
/**
     * UTC datetime the payment link was created in ISO-8601 format.
     *
     * @example "2013-12-25T10:30:54+00:00"
     * @var string|null
     */
    
public $createdAt;

    
/**
     * UTC datetime the payment was paid in ISO-8601 format.
     *
     * @example "2013-12-25T10:30:54+00:00"
     * @var string|null
     */
    
public $paidAt;

    
/**
     * UTC datetime the payment link was updated in ISO-8601 format.
     *
     * @example "2013-12-25T10:30:54+00:00"
     * @var string|null
     */
    
public $updatedAt;

    
/**
     * UTC datetime - the expiry date of the payment link in ISO-8601 format.
     *
     * @example "2013-12-25T10:30:54+00:00"
     * @var string|null
     */
    
public $expiresAt;

    
/**
     * Amount object containing the value and currency
     *
     * @var \stdClass
     */
    
public $amount;

    
/**
     * Description of the payment link that is shown to the customer during the payment,
     * and possibly on the bank or credit card statement.
     *
     * @var string
     */
    
public $description;

    
/**
     * Redirect URL set on this payment
     *
     * @var string
     */
    
public $redirectUrl;

    
/**
     * Webhook URL set on this payment link
     *
     * @var string|null
     */
    
public $webhookUrl;

    
/**
     * @var \stdClass
     */
    
public $_links;

    
/**
     * Is this payment paid for?
     *
     * @return bool
     */
    
public function isPaid()
    {
        return ! empty(
$this->paidAt);
    }

    
/**
     * Get the checkout URL where the customer can complete the payment.
     *
     * @return string|null
     */
    
public function getCheckoutUrl()
    {
        if (empty(
$this->_links->paymentLink)) {
            return 
null;
        }

        return 
$this->_links->paymentLink->href;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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