product · inferred from evidence
BillingInfo
A class or model in the recurly-client-python library representing billing information for an account.
- recurly python: account.billing_info raises AttributeError on new accounts
Don't read billing_info off a new account — create one and attach it. The verified pattern: `account = Account.get('1')`, then `billing_info = BillingInfo()`, `billing_info.token_id = 'TOKEN_ID'`, `account.update_billing_info(billing_info)`