« Back to History
PayoutFeeType.php
|
20260722_120325.php
Initial Domain Snapshot
Copy Code
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Represents the type of payout fee that can incur as part of a payout. */ class PayoutFeeType { /** * Fee type associated with transfers. */ public const TRANSFER_FEE = 'TRANSFER_FEE'; /** * Taxes associated with the transfer fee. */ public const TAX_ON_TRANSFER_FEE = 'TAX_ON_TRANSFER_FEE'; }