Class: Recurly::Resources::Plan
- Inherits:
-
Recurly::Resource
- Object
- Recurly::Resource
- Recurly::Resources::Plan
- Defined in:
- lib/recurly/resources/plan.rb
Instance Attribute Summary collapse
-
#accounting_code ⇒ String
Accounting code for invoice line items for the plan.
-
#allow_any_item_on_subscriptions ⇒ Boolean
Used to determine whether items can be assigned as add-ons to individual subscriptions.
-
#auto_renew ⇒ Boolean
Subscriptions will automatically inherit this value once they are active.
-
#avalara_service_type ⇒ Integer
Used by Avalara for Communications taxes.
-
#avalara_transaction_type ⇒ Integer
Used by Avalara for Communications taxes.
-
#code ⇒ String
Unique code to identify the plan.
-
#created_at ⇒ DateTime
Created at.
-
#currencies ⇒ Array[PlanPricing]
Pricing.
-
#custom_fields ⇒ Array[CustomField]
The custom fields will only be altered when they are included in a request.
-
#deleted_at ⇒ DateTime
Deleted at.
-
#description ⇒ String
Optional description, not displayed.
-
#dunning_campaign_id ⇒ String
Unique ID to identify a dunning campaign.
-
#hosted_pages ⇒ PlanHostedPages
Hosted pages settings.
-
#id ⇒ String
Plan ID.
-
#interval_length ⇒ Integer
Length of the plan's billing interval in `interval_unit`.
-
#interval_unit ⇒ String
Unit for the plan's billing interval.
-
#name ⇒ String
This name describes your plan and will appear on the Hosted Payment Page and the subscriber's invoice.
-
#object ⇒ String
Object type.
-
#pricing_model ⇒ String
A fixed pricing model has the same price for each billing period.
-
#ramp_intervals ⇒ Array[PlanRampInterval]
Ramp Intervals.
-
#revenue_schedule_type ⇒ String
Revenue schedule type.
-
#setup_fee_accounting_code ⇒ String
Accounting code for invoice line items for the plan's setup fee.
-
#setup_fee_revenue_schedule_type ⇒ String
Setup fee revenue schedule type.
-
#state ⇒ String
The current state of the plan.
-
#tax_code ⇒ String
Optional field used by Avalara, Vertex, and Recurly's In-the-Box tax solution to determine taxation rules.
-
#tax_exempt ⇒ Boolean
`true` exempts tax on the plan, `false` applies tax on the plan.
-
#total_billing_cycles ⇒ Integer
Automatically terminate subscriptions after a defined number of billing cycles.
-
#trial_length ⇒ Integer
Length of plan's trial period in `trial_units`.
-
#trial_requires_billing_info ⇒ Boolean
Allow free trial subscriptions to be created without billing info.
-
#trial_unit ⇒ String
Units for the plan's trial period.
-
#updated_at ⇒ DateTime
Last updated at.
Attributes inherited from Recurly::Resource
Method Summary
Methods inherited from Recurly::Resource
#==, #get_response, #inspect, #requires_client?, #to_json, #to_s
Methods included from Schema::SchemaFactory
Methods included from Schema::ResourceCaster
Methods included from Schema::SchemaValidator
#get_did_you_mean, #validate!, #validate_attribute!
Instance Attribute Details
#accounting_code ⇒ String
Returns Accounting code for invoice line items for the plan. If no value is provided, it defaults to plan's code.
11 |
# File 'lib/recurly/resources/plan.rb', line 11 define_attribute :accounting_code, String |
#allow_any_item_on_subscriptions ⇒ Boolean
Returns Used to determine whether items can be assigned as add-ons to individual subscriptions. If `true`, items can be assigned as add-ons to individual subscription add-ons. If `false`, only plan add-ons can be used.
15 |
# File 'lib/recurly/resources/plan.rb', line 15 define_attribute :allow_any_item_on_subscriptions, :Boolean |
#auto_renew ⇒ Boolean
Returns Subscriptions will automatically inherit this value once they are active. If `auto_renew` is `true`, then a subscription will automatically renew its term at renewal. If `auto_renew` is `false`, then a subscription will expire at the end of its term. `auto_renew` can be overridden on the subscription record itself.
19 |
# File 'lib/recurly/resources/plan.rb', line 19 define_attribute :auto_renew, :Boolean |
#avalara_service_type ⇒ Integer
Returns Used by Avalara for Communications taxes. The transaction type in combination with the service type describe how the plan is taxed. Refer to [the documentation](help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) for more available t/s types.
23 |
# File 'lib/recurly/resources/plan.rb', line 23 define_attribute :avalara_service_type, Integer |
#avalara_transaction_type ⇒ Integer
Returns Used by Avalara for Communications taxes. The transaction type in combination with the service type describe how the plan is taxed. Refer to [the documentation](help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) for more available t/s types.
27 |
# File 'lib/recurly/resources/plan.rb', line 27 define_attribute :avalara_transaction_type, Integer |
#code ⇒ String
Returns Unique code to identify the plan. This is used in Hosted Payment Page URLs and in the invoice exports.
31 |
# File 'lib/recurly/resources/plan.rb', line 31 define_attribute :code, String |
#created_at ⇒ DateTime
Returns Created at.
35 |
# File 'lib/recurly/resources/plan.rb', line 35 define_attribute :created_at, DateTime |
#currencies ⇒ Array[PlanPricing]
Returns Pricing.
39 |
# File 'lib/recurly/resources/plan.rb', line 39 define_attribute :currencies, Array, { :item_type => :PlanPricing } |
#custom_fields ⇒ Array[CustomField]
Returns The custom fields will only be altered when they are included in a request. Sending an empty array will not remove any existing values. To remove a field send the name with a null or empty value.
43 |
# File 'lib/recurly/resources/plan.rb', line 43 define_attribute :custom_fields, Array, { :item_type => :CustomField } |
#deleted_at ⇒ DateTime
Returns Deleted at.
47 |
# File 'lib/recurly/resources/plan.rb', line 47 define_attribute :deleted_at, DateTime |
#description ⇒ String
Returns Optional description, not displayed.
51 |
# File 'lib/recurly/resources/plan.rb', line 51 define_attribute :description, String |
#dunning_campaign_id ⇒ String
Returns Unique ID to identify a dunning campaign. Used to specify if a non-default dunning campaign should be assigned to this plan. For sites without multiple dunning campaigns enabled, the default dunning campaign will always be used.
55 |
# File 'lib/recurly/resources/plan.rb', line 55 define_attribute :dunning_campaign_id, String |
#hosted_pages ⇒ PlanHostedPages
Returns Hosted pages settings.
59 |
# File 'lib/recurly/resources/plan.rb', line 59 define_attribute :hosted_pages, :PlanHostedPages |
#id ⇒ String
Returns Plan ID.
63 |
# File 'lib/recurly/resources/plan.rb', line 63 define_attribute :id, String |
#interval_length ⇒ Integer
Returns Length of the plan's billing interval in `interval_unit`.
67 |
# File 'lib/recurly/resources/plan.rb', line 67 define_attribute :interval_length, Integer |
#interval_unit ⇒ String
Returns Unit for the plan's billing interval.
71 |
# File 'lib/recurly/resources/plan.rb', line 71 define_attribute :interval_unit, String |
#name ⇒ String
Returns This name describes your plan and will appear on the Hosted Payment Page and the subscriber's invoice.
75 |
# File 'lib/recurly/resources/plan.rb', line 75 define_attribute :name, String |
#object ⇒ String
Returns Object type.
79 |
# File 'lib/recurly/resources/plan.rb', line 79 define_attribute :object, String |
#pricing_model ⇒ String
Returns A fixed pricing model has the same price for each billing period. A ramp pricing model defines a set of Ramp Intervals, where a subscription changes price on a specified cadence of billing periods. The price change could be an increase or decrease.
83 |
# File 'lib/recurly/resources/plan.rb', line 83 define_attribute :pricing_model, String |
#ramp_intervals ⇒ Array[PlanRampInterval]
Returns Ramp Intervals.
87 |
# File 'lib/recurly/resources/plan.rb', line 87 define_attribute :ramp_intervals, Array, { :item_type => :PlanRampInterval } |
#revenue_schedule_type ⇒ String
Returns Revenue schedule type.
91 |
# File 'lib/recurly/resources/plan.rb', line 91 define_attribute :revenue_schedule_type, String |
#setup_fee_accounting_code ⇒ String
Returns Accounting code for invoice line items for the plan's setup fee. If no value is provided, it defaults to plan's accounting code.
95 |
# File 'lib/recurly/resources/plan.rb', line 95 define_attribute :setup_fee_accounting_code, String |
#setup_fee_revenue_schedule_type ⇒ String
Returns Setup fee revenue schedule type.
99 |
# File 'lib/recurly/resources/plan.rb', line 99 define_attribute :setup_fee_revenue_schedule_type, String |
#state ⇒ String
Returns The current state of the plan.
103 |
# File 'lib/recurly/resources/plan.rb', line 103 define_attribute :state, String |
#tax_code ⇒ String
Returns Optional field used by Avalara, Vertex, and Recurly's In-the-Box tax solution to determine taxation rules. You can pass in specific tax codes using any of these tax integrations. For Recurly's In-the-Box tax offering you can also choose to instead use simple values of `unknown`, `physical`, or `digital` tax codes.
107 |
# File 'lib/recurly/resources/plan.rb', line 107 define_attribute :tax_code, String |
#tax_exempt ⇒ Boolean
Returns `true` exempts tax on the plan, `false` applies tax on the plan.
111 |
# File 'lib/recurly/resources/plan.rb', line 111 define_attribute :tax_exempt, :Boolean |
#total_billing_cycles ⇒ Integer
Returns Automatically terminate subscriptions after a defined number of billing cycles. Number of billing cycles before the plan automatically stops renewing, defaults to `null` for continuous, automatic renewal.
115 |
# File 'lib/recurly/resources/plan.rb', line 115 define_attribute :total_billing_cycles, Integer |
#trial_length ⇒ Integer
Returns Length of plan's trial period in `trial_units`. `0` means `no trial`.
119 |
# File 'lib/recurly/resources/plan.rb', line 119 define_attribute :trial_length, Integer |
#trial_requires_billing_info ⇒ Boolean
Returns Allow free trial subscriptions to be created without billing info. Should not be used if billing info is needed for initial invoice due to existing uninvoiced charges or setup fee.
123 |
# File 'lib/recurly/resources/plan.rb', line 123 define_attribute :trial_requires_billing_info, :Boolean |
#trial_unit ⇒ String
Returns Units for the plan's trial period.
127 |
# File 'lib/recurly/resources/plan.rb', line 127 define_attribute :trial_unit, String |
#updated_at ⇒ DateTime
Returns Last updated at.
131 |
# File 'lib/recurly/resources/plan.rb', line 131 define_attribute :updated_at, DateTime |