File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -21353,6 +21353,11 @@ components:
2135321353 title: Tax exempt?
2135421354 description: "`true` exempts tax on the plan, `false` applies tax on the
2135521355 plan."
21356+ vertex_transaction_type:
21357+ type: string
21358+ title: Vertex Transaction Type
21359+ description: Used by Vertex for tax calculations. Possible values are `sale`,
21360+ `rental`, `lease`.
2135621361 currencies:
2135721362 type: array
2135821363 title: Pricing
@@ -21568,6 +21573,11 @@ components:
2156821573 title: Tax exempt?
2156921574 description: "`true` exempts tax on the plan, `false` applies tax on the
2157021575 plan."
21576+ vertex_transaction_type:
21577+ type: string
21578+ title: Vertex Transaction Type
21579+ description: Used by Vertex for tax calculations. Possible values are `sale`,
21580+ `rental`, `lease`.
2157121581 currencies:
2157221582 type: array
2157321583 title: Pricing
@@ -21832,6 +21842,11 @@ components:
2183221842 title: Tax exempt?
2183321843 description: "`true` exempts tax on the plan, `false` applies tax on the
2183421844 plan."
21845+ vertex_transaction_type:
21846+ type: string
21847+ title: Vertex Transaction Type
21848+ description: Used by Vertex for tax calculations. Possible values are `sale`,
21849+ `rental`, `lease`.
2183521850 currencies:
2183621851 type: array
2183721852 title: Pricing
Original file line number Diff line number Diff line change @@ -2984,6 +2984,8 @@ class Plan(Resource):
29842984 Units for the plan's trial period.
29852985 updated_at : datetime
29862986 Last updated at
2987+ vertex_transaction_type : str
2988+ Used by Vertex for tax calculations. Possible values are `sale`, `rental`, `lease`.
29872989 """
29882990
29892991 schema = {
@@ -3018,6 +3020,7 @@ class Plan(Resource):
30183020 "trial_requires_billing_info" : bool ,
30193021 "trial_unit" : str ,
30203022 "updated_at" : datetime ,
3023+ "vertex_transaction_type" : str ,
30213024 }
30223025
30233026
You can’t perform that action at this time.
0 commit comments