Skip to content

Commit

Permalink
Merge pull request #188 from bullhorn/f/directDepositAccount
Browse files Browse the repository at this point in the history
feat(typings): Adding DirectDepositAccount types
  • Loading branch information
antonyw89 authored Sep 9, 2024
2 parents c2754bb + 44307c2 commit dde20bd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ export class EntityTypes {
static DeductionCategoryLookup: 'DeductionCategoryLookup' = 'DeductionCategoryLookup';
static DefaultEarnCode: 'DefaultEarnCode' = 'DefaultEarnCode';
static Department: 'Department' = 'Department';
static DirectDepositAccount: 'DirectDepositAccount' = 'DirectDepositAccount';
static DirectDepositAccountTypeLookup: 'DirectDepositAccountTypeLookup' = 'DirectDepositAccountTypeLookup';
static Discount: 'Discount' = 'Discount';
static DiscountEditHistory: 'DiscountEditHistory' = 'DiscountEditHistory';
static DiscountEditHistoryFieldChange: 'DiscountEditHistoryFieldChange' = 'DiscountEditHistoryFieldChange';
Expand Down Expand Up @@ -5096,6 +5098,29 @@ export interface DeliveryMethodLookup {
modifiedByUser?: CorporateUser;
shouldShowInPicker?: boolean;
}
export interface DirectDepositAccount {
id?: number;
accountNumber?: string;
amount?: number;
bankName?: string;
candidate?: Candidate;
currencyUnit?: CurrencyUnit;
dateAdded?: Date;
dateLastModified?: Date;
deletedByUser?: CorporateUser;
directDepositAccountTypeLookup?: DirectDepositAccountTypeLookup;
institutionNumber?: string;
isDeleted?: boolean;
paymentOrder?: number;
percentValue?: number;
remainder?: boolean;
transitNumber?: string;
}
export interface DirectDepositAccountTypeLookup {
id?: number;
isDeleted?: boolean;
label?: Strings;
}
export interface Discount {
id?: number;
addedByUser?: CorporateUser;
Expand Down

0 comments on commit dde20bd

Please sign in to comment.