__construct() public method

public __construct ( $href = null, $client = null )
Ejemplo n.º 1
0
 function __construct($accountCode = null, $client = null)
 {
     parent::__construct(null, $client);
     if (!is_null($accountCode)) {
         $this->account_code = $accountCode;
     }
     $this->address = new Recurly_Address();
 }
Ejemplo n.º 2
0
 function __construct($accountCode = null, $client = null)
 {
     parent::__construct(null, $client);
     if (!is_null($accountCode)) {
         $this->account_code = $accountCode;
     }
     $this->address = new Recurly_Address();
     $this->balance_in_cents_invoiced = new Recurly_CurrencyList('balance_in_cents_invoiced');
     $this->balance_in_cents_uninvoiced = new Recurly_CurrencyList('balance_in_cents_uninvoiced');
 }
Ejemplo n.º 3
0
 function __construct($href = null, $client = null)
 {
     parent::__construct($href, $client);
     $this->discount_in_cents = new Recurly_CurrencyList('discount_in_cents');
 }
Ejemplo n.º 4
0
 function __construct()
 {
     parent::__construct();
     $this->discount_in_cents = new Recurly_CurrencyList('discount_in_cents');
 }
Ejemplo n.º 5
0
 public function __construct($href = null, $client = null)
 {
     parent::__construct($href, $client);
     $this->subscription_add_ons = array();
 }
Ejemplo n.º 6
0
 function __construct() {
   parent::__construct();
   $this->setup_fee_in_cents = new Recurly_CurrencyList('setup_fee_in_cents');
   $this->unit_amount_in_cents = new Recurly_CurrencyList('unit_amount_in_cents');
 }
Ejemplo n.º 7
0
 function __construct()
 {
     parent::__construct();
     $this->balance_in_cents = new Recurly_CurrencyList('balance_in_cents');
 }