Recurly_BillingInfo::get PHP Method

get() public static method

public static get ( $accountCode, $client = null )
    public static function get($accountCode, $client = null)
    {
        return Recurly_Base::_get(Recurly_BillingInfo::uriForBillingInfo($accountCode), $client);
    }

Usage Example

 public function testDelete()
 {
     $billing_info = Recurly_BillingInfo::get('abcdef1234567890', $this->client);
     $this->assertInstanceOf('Recurly_BillingInfo', $billing_info);
     $billing_info->delete();
 }
All Usage Examples Of Recurly_BillingInfo::get