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:
21353
21353
title: Tax exempt?
21354
21354
description: "`true` exempts tax on the plan, `false` applies tax on the
21355
21355
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`.
21356
21361
currencies:
21357
21362
type: array
21358
21363
title: Pricing
@@ -21568,6 +21573,11 @@ components:
21568
21573
title: Tax exempt?
21569
21574
description: "`true` exempts tax on the plan, `false` applies tax on the
21570
21575
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`.
21571
21581
currencies:
21572
21582
type: array
21573
21583
title: Pricing
@@ -21832,6 +21842,11 @@ components:
21832
21842
title: Tax exempt?
21833
21843
description: "`true` exempts tax on the plan, `false` applies tax on the
21834
21844
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`.
21835
21850
currencies:
21836
21851
type: array
21837
21852
title: Pricing
Original file line number Diff line number Diff line change @@ -2984,6 +2984,8 @@ class Plan(Resource):
2984
2984
Units for the plan's trial period.
2985
2985
updated_at : datetime
2986
2986
Last updated at
2987
+ vertex_transaction_type : str
2988
+ Used by Vertex for tax calculations. Possible values are `sale`, `rental`, `lease`.
2987
2989
"""
2988
2990
2989
2991
schema = {
@@ -3018,6 +3020,7 @@ class Plan(Resource):
3018
3020
"trial_requires_billing_info" : bool ,
3019
3021
"trial_unit" : str ,
3020
3022
"updated_at" : datetime ,
3023
+ "vertex_transaction_type" : str ,
3021
3024
}
3022
3025
3023
3026
You can’t perform that action at this time.
0 commit comments