Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : ACHDetails.php
<?php

declare(strict_types=1);

namespace Square\Models;

use stdClass;

/**
 * ACH-specific details about `BANK_ACCOUNT` type payments with the `transfer_type` of `ACH`.
 */
class ACHDetails implements \JsonSerializable
{
    /**
     * @var array
     */
    private $routingNumber = [];

    /**
     * @var array
     */
    private $accountNumberSuffix = [];

    /**
     * @var array
     */
    private $accountType = [];

    /**
     * Returns Routing Number.
     * The routing number for the bank account.
     */
    public function getRoutingNumber(): ?string
    {
        if (count($this->routingNumber) == 0) {
            return null;
        }
        return $this->routingNumber['value'];
    }

    /**
     * Sets Routing Number.
     * The routing number for the bank account.
     *
     * @maps routing_number
     */
    public function setRoutingNumber(?string $routingNumber): void
    {
        $this->routingNumber['value'] = $routingNumber;
    }

    /**
     * Unsets Routing Number.
     * The routing number for the bank account.
     */
    public function unsetRoutingNumber(): void
    {
        $this->routingNumber = [];
    }

    /**
     * Returns Account Number Suffix.
     * The last few digits of the bank account number.
     */
    public function getAccountNumberSuffix(): ?string
    {
        if (count($this->accountNumberSuffix) == 0) {
            return null;
        }
        return $this->accountNumberSuffix['value'];
    }

    /**
     * Sets Account Number Suffix.
     * The last few digits of the bank account number.
     *
     * @maps account_number_suffix
     */
    public function setAccountNumberSuffix(?string $accountNumberSuffix): void
    {
        $this->accountNumberSuffix['value'] = $accountNumberSuffix;
    }

    /**
     * Unsets Account Number Suffix.
     * The last few digits of the bank account number.
     */
    public function unsetAccountNumberSuffix(): void
    {
        $this->accountNumberSuffix = [];
    }

    /**
     * Returns Account Type.
     * The type of the bank account performing the transfer. The account type can be `CHECKING`,
     * `SAVINGS`, or `UNKNOWN`.
     */
    public function getAccountType(): ?string
    {
        if (count($this->accountType) == 0) {
            return null;
        }
        return $this->accountType['value'];
    }

    /**
     * Sets Account Type.
     * The type of the bank account performing the transfer. The account type can be `CHECKING`,
     * `SAVINGS`, or `UNKNOWN`.
     *
     * @maps account_type
     */
    public function setAccountType(?string $accountType): void
    {
        $this->accountType['value'] = $accountType;
    }

    /**
     * Unsets Account Type.
     * The type of the bank account performing the transfer. The account type can be `CHECKING`,
     * `SAVINGS`, or `UNKNOWN`.
     */
    public function unsetAccountType(): void
    {
        $this->accountType = [];
    }

    /**
     * Encode this object to JSON
     *
     * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
     *        are set. (default: false)
     *
     * @return array|stdClass
     */
    #[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1)
    public function jsonSerialize(bool $asArrayWhenEmpty = false)
    {
        $json = [];
        if (!empty($this->routingNumber)) {
            $json['routing_number']        = $this->routingNumber['value'];
        }
        if (!empty($this->accountNumberSuffix)) {
            $json['account_number_suffix'] = $this->accountNumberSuffix['value'];
        }
        if (!empty($this->accountType)) {
            $json['account_type']          = $this->accountType['value'];
        }
        $json = array_filter($json, function ($val) {
            return $val !== null;
        });

        return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
    }
}
© 2026 GrazzMean-Shell