Skip to content
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
2 changes: 2 additions & 0 deletions model/StatementReportRequest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as isoly from "isoly"
import { Inclusion } from "./Inclusion"
import { ProviderCode } from "./ProviderCode"
import { StatementReportRowActionType } from "./StatementReportRowActionType"
import { StatementReportSubType } from "./StatementReportSubType"
Expand All @@ -13,4 +14,5 @@ export interface StatementReportRequest {
actionTypes?: StatementReportRowActionType[]
type?: "summary" | "full"
subType?: StatementReportSubType
rebateTransfers?: Inclusion
}
2 changes: 2 additions & 0 deletions model/StatementSummaryReportRequest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as isoly from "isoly"
import { Inclusion } from "./Inclusion"
import { ProviderCode } from "./ProviderCode"
import { BalanceType } from "./Report/BalanceType"
import { StatementReportRowActionType } from "./StatementReportRowActionType"
Expand All @@ -15,4 +16,5 @@ export interface StatementSummaryReportRequest {
}
subType?: StatementReportSubType
period: "DAILY" | "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY" | "ENTIRE"
rebateTransfers?: Inclusion
}