Sha256: 220eed3bf9f318eba17d485c169e9224af5dd40e7f7e3166f96b1a4aae68cf86

Contents?: true

Size: 1.84 KB

Versions: 4

Compression:

Stored size: 1.84 KB

Contents

module ChargeBee
  class ItemPrice < Model

    class Tier < Model
      attr_accessor :starting_unit, :ending_unit, :price, :starting_unit_in_decimal, :ending_unit_in_decimal, :price_in_decimal
    end

    class TaxDetail < Model
      attr_accessor :tax_profile_id, :avalara_sale_type, :avalara_transaction_type, :avalara_service_type, :avalara_tax_code, :taxjar_product_code
    end

    class AccountingDetail < Model
      attr_accessor :sku, :accounting_code, :accounting_category1, :accounting_category2, :accounting_category3, :accounting_category4
    end

  attr_accessor :id, :name, :item_family_id, :item_id, :description, :status, :external_name,
  :pricing_model, :price, :price_in_decimal, :period, :currency_code, :period_unit, :trial_period,
  :trial_period_unit, :trial_end_action, :shipping_period, :shipping_period_unit, :billing_cycles,
  :free_quantity, :free_quantity_in_decimal, :resource_version, :updated_at, :created_at, :archived_at,
  :invoice_notes, :tiers, :is_taxable, :tax_detail, :accounting_detail, :metadata, :item_type,
  :archivable, :parent_item_id, :show_description_in_invoices, :show_description_in_quotes

  # OPERATIONS
  #-----------

  def self.create(params, env=nil, headers={})
    Request.send('post', uri_path("item_prices"), params, env, headers)
  end

  def self.retrieve(id, env=nil, headers={})
    Request.send('get', uri_path("item_prices",id.to_s), {}, env, headers)
  end

  def self.update(id, params={}, env=nil, headers={})
    Request.send('post', uri_path("item_prices",id.to_s), params, env, headers)
  end

  def self.list(params={}, env=nil, headers={})
    Request.send_list_request('get', uri_path("item_prices"), params, env, headers)
  end

  def self.delete(id, env=nil, headers={})
    Request.send('post', uri_path("item_prices",id.to_s,"delete"), {}, env, headers)
  end

  end # ~ItemPrice
end # ~ChargeBee

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
chargebee-2.10.1 lib/chargebee/models/item_price.rb
chargebee-2.10.0 lib/chargebee/models/item_price.rb
chargebee-2.9.0 lib/chargebee/models/item_price.rb
chargebee-2.8.8 lib/chargebee/models/item_price.rb