Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated Latest Changes for v2021-02-25 #855

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Recurly/Resources/Plan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,9 @@ public class Plan : Resource
[JsonProperty("updated_at")]
public DateTime? UpdatedAt { get; set; }

/// <value>Used by Vertex for tax calculations. Possible values are `sale`, `rental`, `lease`.</value>
[JsonProperty("vertex_transaction_type")]
public string VertexTransactionType { get; set; }

}
}
4 changes: 4 additions & 0 deletions Recurly/Resources/PlanCreate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,9 @@ public class PlanCreate : Request
[JsonConverter(typeof(RecurlyStringEnumConverter))]
public Constants.IntervalUnit? TrialUnit { get; set; }

/// <value>Used by Vertex for tax calculations. Possible values are `sale`, `rental`, `lease`.</value>
[JsonProperty("vertex_transaction_type")]
public string VertexTransactionType { get; set; }

}
}
4 changes: 4 additions & 0 deletions Recurly/Resources/PlanUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,9 @@ public class PlanUpdate : Request
[JsonConverter(typeof(RecurlyStringEnumConverter))]
public Constants.IntervalUnit? TrialUnit { get; set; }

/// <value>Used by Vertex for tax calculations. Possible values are `sale`, `rental`, `lease`.</value>
[JsonProperty("vertex_transaction_type")]
public string VertexTransactionType { get; set; }

}
}
15 changes: 15 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21353,6 +21353,11 @@ components:
title: Tax exempt?
description: "`true` exempts tax on the plan, `false` applies tax on the
plan."
vertex_transaction_type:
type: string
title: Vertex Transaction Type
description: Used by Vertex for tax calculations. Possible values are `sale`,
`rental`, `lease`.
currencies:
type: array
title: Pricing
Expand Down Expand Up @@ -21568,6 +21573,11 @@ components:
title: Tax exempt?
description: "`true` exempts tax on the plan, `false` applies tax on the
plan."
vertex_transaction_type:
type: string
title: Vertex Transaction Type
description: Used by Vertex for tax calculations. Possible values are `sale`,
`rental`, `lease`.
currencies:
type: array
title: Pricing
Expand Down Expand Up @@ -21832,6 +21842,11 @@ components:
title: Tax exempt?
description: "`true` exempts tax on the plan, `false` applies tax on the
plan."
vertex_transaction_type:
type: string
title: Vertex Transaction Type
description: Used by Vertex for tax calculations. Possible values are `sale`,
`rental`, `lease`.
currencies:
type: array
title: Pricing
Expand Down
Loading