chargebee-php icon indicating copy to clipboard operation
chargebee-php copied to clipboard

PHP library for the Chargebee API.

Results 13 chargebee-php issues
Sort by recently updated
recently updated
newest added

### Description of the Bug Result::transaction() maps the 'gateway_error_detail' API field to the Models\TransactionGatewayErrorDetail class But the 'gateway_error_detail' API field does not exist, it's 'error_detail' in the actuel JSON data...

### What problem does your feature request address? It seems a couple properties (mostly in sub-entities ?) were not converted to Enums : $subscrption->contract_term->action_at_term_end $subscrption->subscription_items[N]->item_type $subscrption->subscription_items[N]->billing_period_unit $invoice->line_items[N]->entity_type $invoice->linked_payments[N]->status I didn't...

### What problem does your feature request address? It would be convenient to be able to write code like : ```php $chargebeeClient->subscription()->all(['status' => ['is' => Status::ACTIVE]]) $chargebeeClient->subscription()->all(['status' => ['is' =>...