ok

Mini Shell

Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/
Upload File :
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/CardPaymentTimeline.php

<?php

declare(strict_types=1);

namespace Square\Models;

use stdClass;

/**
 * The timeline for card payments.
 */
class CardPaymentTimeline implements \JsonSerializable
{
    /**
     * @var string|null
     */
    private $authorizedAt;

    /**
     * @var string|null
     */
    private $capturedAt;

    /**
     * @var string|null
     */
    private $voidedAt;

    /**
     * Returns Authorized At.
     *
     * The timestamp when the payment was authorized, in RFC 3339 format.
     */
    public function getAuthorizedAt(): ?string
    {
        return $this->authorizedAt;
    }

    /**
     * Sets Authorized At.
     *
     * The timestamp when the payment was authorized, in RFC 3339 format.
     *
     * @maps authorized_at
     */
    public function setAuthorizedAt(?string $authorizedAt): void
    {
        $this->authorizedAt = $authorizedAt;
    }

    /**
     * Returns Captured At.
     *
     * The timestamp when the payment was captured, in RFC 3339 format.
     */
    public function getCapturedAt(): ?string
    {
        return $this->capturedAt;
    }

    /**
     * Sets Captured At.
     *
     * The timestamp when the payment was captured, in RFC 3339 format.
     *
     * @maps captured_at
     */
    public function setCapturedAt(?string $capturedAt): void
    {
        $this->capturedAt = $capturedAt;
    }

    /**
     * Returns Voided At.
     *
     * The timestamp when the payment was voided, in RFC 3339 format.
     */
    public function getVoidedAt(): ?string
    {
        return $this->voidedAt;
    }

    /**
     * Sets Voided At.
     *
     * The timestamp when the payment was voided, in RFC 3339 format.
     *
     * @maps voided_at
     */
    public function setVoidedAt(?string $voidedAt): void
    {
        $this->voidedAt = $voidedAt;
    }

    /**
     * Encode this object to JSON
     *
     * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
     *        are set. (default: false)
     *
     * @return mixed
     */
    public function jsonSerialize(bool $asArrayWhenEmpty = false)
    {
        $json = [];
        if (isset($this->authorizedAt)) {
            $json['authorized_at'] = $this->authorizedAt;
        }
        if (isset($this->capturedAt)) {
            $json['captured_at']   = $this->capturedAt;
        }
        if (isset($this->voidedAt)) {
            $json['voided_at']     = $this->voidedAt;
        }
        $json = array_filter($json, function ($val) {
            return $val !== null;
        });

        return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
    }
}

Zerion Mini Shell 1.0