Skip to content

Commit

Permalink
First stub class for subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Chernyshev committed Jan 7, 2012
1 parent 9538c5e commit 2ed072f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions PaymentSchedule.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
/**
* @package StartupAPI
* @subpackage Subscriptions
*/

/**
* Every account is associated with existing Plan using Plan ID and PaymentSchedule using PaymentScheduleID.
*/
class PaymentSchedule {
public $id;
public $name;
public $description;
public $chargeAmount;
public $chargePeriod;
}

0 comments on commit 2ed072f

Please sign in to comment.