%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
/**
* Determines the billing cadence of a [Subscription]($m/Subscription)
*/
class SubscriptionCadence
{
/**
* Once per day
*/
public const DAILY = 'DAILY';
/**
* Once per week
*/
public const WEEKLY = 'WEEKLY';
/**
* Every two weeks
*/
public const EVERY_TWO_WEEKS = 'EVERY_TWO_WEEKS';
/**
* Once every 30 days
*/
public const THIRTY_DAYS = 'THIRTY_DAYS';
/**
* Once every 60 days
*/
public const SIXTY_DAYS = 'SIXTY_DAYS';
/**
* Once every 90 days
*/
public const NINETY_DAYS = 'NINETY_DAYS';
/**
* Once per month
*/
public const MONTHLY = 'MONTHLY';
/**
* Once every two months
*/
public const EVERY_TWO_MONTHS = 'EVERY_TWO_MONTHS';
/**
* Once every three months
*/
public const QUARTERLY = 'QUARTERLY';
/**
* Once every four months
*/
public const EVERY_FOUR_MONTHS = 'EVERY_FOUR_MONTHS';
/**
* Once every six months
*/
public const EVERY_SIX_MONTHS = 'EVERY_SIX_MONTHS';
/**
* Once per year
*/
public const ANNUAL = 'ANNUAL';
/**
* Once every two years
*/
public const EVERY_TWO_YEARS = 'EVERY_TWO_YEARS';
}