You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/recurly/requests/gift_card_create.rb
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,10 @@ class GiftCardCreate < Request
22
22
# @return [String] The product code or SKU of the gift card product.
23
23
define_attribute:product_code,String
24
24
25
+
# @!attribute tax_service_opt_out
26
+
# @return [Boolean] Set to `true` to bypass sending the purchase to your configured tax service. Defaults to `false`.
27
+
define_attribute:tax_service_opt_out,:Boolean
28
+
25
29
# @!attribute unit_amount
26
30
# @return [Float] The amount of the gift card, which is the amount of the charge to the gifter account and the amount of credit that is applied to the recipient account upon successful redemption.
Copy file name to clipboardExpand all lines: lib/recurly/requests/invoice_create.rb
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,10 @@ class InvoiceCreate < Request
53
53
# @!attribute vat_reverse_charge_notes
54
54
# @return [String] VAT Reverse Charge Notes only appear if you have EU VAT enabled or are using your own Avalara AvaTax account and the customer is in the EU, has a VAT number, and is in a different country than your own. This will default to the VAT Reverse Charge Notes text specified on the Tax Settings page in your Recurly admin, unless custom notes were created with the original subscription.
55
55
define_attribute:vat_reverse_charge_notes,String
56
+
57
+
# @!attribute vertex_transaction_type
58
+
# @return [String] Used by Vertex for tax calculations. Possible values are sale, rental, lease.
Copy file name to clipboardExpand all lines: lib/recurly/requests/line_item_create.rb
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,10 @@ class LineItemCreate < Request
109
109
# @!attribute unit_amount
110
110
# @return [Float] A positive or negative amount with `type=charge` will result in a positive `unit_amount`. A positive or negative amount with `type=credit` will result in a negative `unit_amount`. If `item_code`/`item_id` is present, `unit_amount` can be passed in, to override the `Item`'s `unit_amount`. If `item_code`/`item_id` is not present then `unit_amount` is required.
111
111
define_attribute:unit_amount,Float
112
+
113
+
# @!attribute vertex_transaction_type
114
+
# @return [String] Used by Vertex for tax calculations. Possible values are sale, rental, lease.
Refer to [the documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types)
0 commit comments