Skip to content

Commit

Permalink
Merge pull request #176 from recurly/v3-v2019-10-10-1636486086
Browse files Browse the repository at this point in the history
Generated Latest Changes for v2019-10-10 (Account Hierarchy Invoice Rollup)
  • Loading branch information
jguidry-recurly authored Nov 11, 2021
2 parents 15b99d9 + cc98d92 commit 260c828
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18279,6 +18279,12 @@ components:
- carryforward
account:
"$ref": "#/components/schemas/AccountMini"
bill_for_account_id:
type: string
title: Bill For Account ID
maxLength: 13
description: The UUID of the account responsible for originating the line
item.
subscription_id:
type: string
title: Subscription ID
Expand Down Expand Up @@ -21916,6 +21922,8 @@ components:
- batch_processing_error
- billing_agreement_already_accepted
- billing_agreement_not_accepted
- billing_agreement_not_found
- billing_agreement_replaced
- call_issuer
- call_issuer_update_cardholder_data
- cannot_refund_unsettled_transactions
Expand Down
15 changes: 15 additions & 0 deletions src/main/java/com/recurly/v3/resources/LineItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public class LineItem extends Resource {
@Expose
private Integer avalaraTransactionType;

/** The UUID of the account responsible for originating the line item. */
@SerializedName("bill_for_account_id")
@Expose
private String billForAccountId;

/** When the line item was created. */
@SerializedName("created_at")
@Expose
Expand Down Expand Up @@ -423,6 +428,16 @@ public void setAvalaraTransactionType(final Integer avalaraTransactionType) {
this.avalaraTransactionType = avalaraTransactionType;
}

/** The UUID of the account responsible for originating the line item. */
public String getBillForAccountId() {
return this.billForAccountId;
}

/** @param billForAccountId The UUID of the account responsible for originating the line item. */
public void setBillForAccountId(final String billForAccountId) {
this.billForAccountId = billForAccountId;
}

/** When the line item was created. */
public DateTime getCreatedAt() {
return this.createdAt;
Expand Down

0 comments on commit 260c828

Please sign in to comment.