1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
import json
from chargebee.model import Model
from chargebee import request
from chargebee import APIError
class Addon(Model):
class Tier(Model):
fields = ["starting_unit", "ending_unit", "price", "starting_unit_in_decimal", "ending_unit_in_decimal", "price_in_decimal"]
pass
fields = ["id", "name", "invoice_name", "description", "pricing_model", "type", "charge_type", \
"price", "currency_code", "period", "period_unit", "unit", "status", "archived_at", "enabled_in_portal", \
"tax_code", "hsn_code", "taxjar_product_code", "avalara_sale_type", "avalara_transaction_type", \
"avalara_service_type", "sku", "accounting_code", "accounting_category1", "accounting_category2", \
"accounting_category3", "accounting_category4", "is_shippable", "shipping_frequency_period", \
"shipping_frequency_period_unit", "resource_version", "updated_at", "price_in_decimal", "included_in_mrr", \
"invoice_notes", "taxable", "tax_profile_id", "meta_data", "tiers", "show_description_in_invoices", \
"show_description_in_quotes"]
@staticmethod
def create(params, env=None, headers=None):
return request.send('post', request.uri_path("addons"), params, env, headers)
@staticmethod
def update(id, params=None, env=None, headers=None):
return request.send('post', request.uri_path("addons",id), params, env, headers)
@staticmethod
def list(params=None, env=None, headers=None):
return request.send_list_request('get', request.uri_path("addons"), params, env, headers)
@staticmethod
def retrieve(id, env=None, headers=None):
return request.send('get', request.uri_path("addons",id), None, env, headers)
@staticmethod
def delete(id, env=None, headers=None):
return request.send('post', request.uri_path("addons",id,"delete"), None, env, headers)
@staticmethod
def copy(params, env=None, headers=None):
return request.send('post', request.uri_path("addons","copy"), params, env, headers)
@staticmethod
def unarchive(id, env=None, headers=None):
return request.send('post', request.uri_path("addons",id,"unarchive"), None, env, headers)
|