Copied!
<?php

namespace PHPFUI\PayPal;

/**
 * @property string $interval_unit 'DAY', 'WEEK', 'MONTH', or 'YEAR'
 * @property int $interval_count
 */
class Frequency extends \PHPFUI\PayPal\Base
	{
	/** @var array<string, string | array<string>> */
	protected static array $validFields = [
		'interval_unit' => ['DAY', 'WEEK', 'MONTH', 'YEAR'],
		'interval_count' => 'integer',
	];
	}
© 2026 Bruce Wells
Search Namespaces \ Classes
Configuration