Recurly_BillingInfo::deleteForAccount PHP Method

deleteForAccount() public static method

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

Usage Example

 public function testDeleteForAccount()
 {
     Recurly_BillingInfo::deleteForAccount('abcdef1234567890', $this->client);
 }