Skip to content

Commit

Permalink
Merge pull request #189 from recurly/v3-v2019-10-10-1646932670
Browse files Browse the repository at this point in the history
Generated Latest Changes for v2019-10-10
  • Loading branch information
arzitney authored Mar 11, 2022
2 parents 26bf904 + c1a358c commit 52a6d7d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
7 changes: 4 additions & 3 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20855,9 +20855,10 @@ components:
type: boolean
title: Tax Inclusive?
default: false
description: Determines whether or not tax is included in the unit amount.
The Tax Inclusive Pricing feature (separate from the Mixed Tax Pricing
feature) must be enabled to use this flag.
description: This field is deprecated. Do not use it anymore to update a
subscription's tax inclusivity. Use the POST subscription change route
instead.
deprecated: true
shipping:
"$ref": "#/components/schemas/SubscriptionShippingUpdate"
billing_info_id:
Expand Down
13 changes: 6 additions & 7 deletions src/main/java/com/recurly/v3/requests/SubscriptionUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public class SubscriptionUpdate extends Request {
private SubscriptionShippingUpdate shipping;

/**
* Determines whether or not tax is included in the unit amount. The Tax Inclusive Pricing feature
* (separate from the Mixed Tax Pricing feature) must be enabled to use this flag.
* This field is deprecated. Do not use it anymore to update a subscription's tax inclusivity. Use
* the POST subscription change route instead.
*/
@SerializedName("tax_inclusive")
@Expose
Expand Down Expand Up @@ -293,17 +293,16 @@ public void setShipping(final SubscriptionShippingUpdate shipping) {
}

/**
* Determines whether or not tax is included in the unit amount. The Tax Inclusive Pricing feature
* (separate from the Mixed Tax Pricing feature) must be enabled to use this flag.
* This field is deprecated. Do not use it anymore to update a subscription's tax inclusivity. Use
* the POST subscription change route instead.
*/
public Boolean getTaxInclusive() {
return this.taxInclusive;
}

/**
* @param taxInclusive Determines whether or not tax is included in the unit amount. The Tax
* Inclusive Pricing feature (separate from the Mixed Tax Pricing feature) must be enabled to
* use this flag.
* @param taxInclusive This field is deprecated. Do not use it anymore to update a subscription's
* tax inclusivity. Use the POST subscription change route instead.
*/
public void setTaxInclusive(final Boolean taxInclusive) {
this.taxInclusive = taxInclusive;
Expand Down

0 comments on commit 52a6d7d

Please sign in to comment.