Skip to content

Commit 211fd40

Browse files
author
Recurly Integrations
authored
Generated Latest Changes for v2021-02-25
1 parent ef5061a commit 211fd40

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

openapi/api.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20934,6 +20934,8 @@ components:
2093420934
will default to the VAT Reverse Charge Notes text specified on the Tax
2093520935
Settings page in your Recurly admin, unless custom notes were created
2093620936
with the original subscription.
20937+
vertex_transaction_type:
20938+
"$ref": "#/components/schemas/VertexTransactionTypeEnum"
2093720939
required:
2093820940
- currency
2093920941
InvoiceCollect:
@@ -21464,6 +21466,8 @@ components:
2146421466
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)
2146521467
for more available t/s types.
2146621468
minimum: 0
21469+
vertex_transaction_type:
21470+
"$ref": "#/components/schemas/VertexTransactionTypeEnum"
2146721471
tax_code:
2146821472
type: string
2146921473
maxLength: 50
@@ -21719,6 +21723,8 @@ components:
2171921723
for more available t/s types. If an `Item` is associated to the `LineItem`,
2172021724
then the `avalara_service_type` must be absent.
2172121725
minimum: 0
21726+
vertex_transaction_type:
21727+
"$ref": "#/components/schemas/VertexTransactionTypeEnum"
2172221728
tax_code:
2172321729
type: string
2172421730
maxLength: 50
@@ -25080,6 +25086,8 @@ components:
2508025086
type: string
2508125087
title: VAT reverse charge notes
2508225088
description: VAT reverse charge notes for cross border European tax settlement.
25089+
vertex_transaction_type:
25090+
"$ref": "#/components/schemas/VertexTransactionTypeEnum"
2508325091
credit_customer_notes:
2508425092
type: string
2508525093
title: Credit customer notes
@@ -26496,6 +26504,11 @@ components:
2649626504
type: string
2649726505
description: 3-letter ISO 4217 currency code.
2649826506
maxLength: 3
26507+
tax_service_opt_out:
26508+
title: Tax service opt-out
26509+
type: boolean
26510+
description: Set to `true` to bypass sending the purchase to your configured
26511+
tax service. Defaults to `false`.
2649926512
delivery:
2650026513
title: Delivery details
2650126514
description: The delivery details for the gift card.
@@ -26760,6 +26773,15 @@ components:
2676026773
enum:
2676126774
- charge
2676226775
- credit
26776+
VertexTransactionTypeEnum:
26777+
type: string
26778+
title: Vertex Transaction Type
26779+
description: Used by Vertex for tax calculations. Possible values are sale,
26780+
rental, lease.
26781+
enum:
26782+
- sale
26783+
- rental
26784+
- lease
2676326785
FilterTransactionTypeEnum:
2676426786
type: string
2676526787
enum:

recurly/resources.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1960,6 +1960,8 @@ class LineItem(Resource):
19601960
When the line item was last changed.
19611961
uuid : str
19621962
The UUID is useful for matching data with the CSV exports and building URLs into Recurly's UI.
1963+
vertex_transaction_type : str
1964+
Used by Vertex for tax calculations. Possible values are sale, rental, lease.
19631965
"""
19641966

19651967
schema = {
@@ -2022,6 +2024,7 @@ class LineItem(Resource):
20222024
"unit_amount_decimal": str,
20232025
"updated_at": datetime,
20242026
"uuid": str,
2027+
"vertex_transaction_type": str,
20252028
}
20262029

20272030

0 commit comments

Comments
 (0)