HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/DestinationType.php
<?php

declare(strict_types=1);

namespace Square\Models;

/**
 * List of possible destinations against which a payout can be made.
 */
class DestinationType
{
    /**
     * An external bank account outside of Square.
     */
    public const BANK_ACCOUNT = 'BANK_ACCOUNT';

    /**
     * An external card outside of Square used for the transfer.
     */
    public const CARD = 'CARD';

    public const SQUARE_BALANCE = 'SQUARE_BALANCE';

    /**
     * Square Checking or Savings account (US), Square Card (CA)
     */
    public const SQUARE_STORED_BALANCE = 'SQUARE_STORED_BALANCE';
}