Sha256: 11d50d3d46e3b49000b400b9a8c99bd1028b77e9e3ddf3024353aa9680521004
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
# This file is automatically created by Recurly's OpenAPI generation process # and thus any edits you make by hand will be lost. If you wish to make a # change to this file, please create a Github issue explaining the changes you # need and we will usher them to the appropriate places. module Recurly module Requests class AddOnCreate < Request # @!attribute accounting_code # @return [String] Accounting code for invoice line items for this add-on. If no value is provided, it defaults to add-on's code. define_attribute :accounting_code, String # @!attribute code # @return [String] The unique identifier for the add-on within its plan. define_attribute :code, String # @!attribute currencies # @return [Array[AddOnPricing]] Add-on pricing define_attribute :currencies, Array, { :item_type => :AddOnPricing } # @!attribute default_quantity # @return [Integer] Default quantity for the hosted pages. define_attribute :default_quantity, Integer # @!attribute display_quantity # @return [Boolean] Determines if the quantity field is displayed on the hosted pages for the add-on. define_attribute :display_quantity, :Boolean # @!attribute name # @return [String] Describes your add-on and will appear in subscribers' invoices. define_attribute :name, String # @!attribute [r] plan_id # @return [String] Plan ID define_attribute :plan_id, String, { :read_only => true } # @!attribute tax_code # @return [String] Optional field for EU VAT merchants and Avalara AvaTax Pro merchants. If you are using Recurly's EU VAT feature, you can use values of 'unknown', 'physical', or 'digital'. If you have your own AvaTax account configured, you can use Avalara tax codes to assign custom tax rules. define_attribute :tax_code, String end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
recurly-3.0.0.beta.4 | lib/recurly/requests/add_on_create.rb |