Skip to content

Commit

Permalink
feat(typings): Adding recipient types to invoice statement (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtwBullhorn authored Sep 7, 2021
1 parent 9d27f31 commit 2f6d029
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5356,12 +5356,14 @@ export interface HousingComplexUtilityAccount {
}
export interface InvoiceStatement {
id?: number;
bccRecipients?: ToMany<Person>;
billingAttention?: Strings;
billingClientContact?: ClientContact;
billingCorporateUser?: CorporateUser;
billingPeriodEndDate?: Date;
billingProfile?: BillingProfile;
billingScheduleID?: number;
ccRecipients?: ToMany<Person>;
clientCorporation?: ClientCorporation;
creditOfInvoiceStatement?: InvoiceStatement;
creditedByInvoiceStatement?: InvoiceStatement;
Expand Down Expand Up @@ -5411,6 +5413,7 @@ export interface InvoiceStatement {
taxAmount?: number;
taxTotal?: number;
taxes?: ToMany<InvoiceStatementTax>;
toRecipients?: ToMany<Person>;
total?: number;
}
export interface InvoiceStatementBatch {
Expand Down

0 comments on commit 2f6d029

Please sign in to comment.