Skip to content

Commit

Permalink
add EarnCodeTemplateEarnCodes entity type
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Badra committed Nov 15, 2023
1 parent 0e89589 commit 1547f2d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5395,9 +5395,13 @@ export interface EarnCodeTemplate {
dateAdded?: Date;
dateLastModified?: Date;
description?: Strings;
earnCodes?: ToMany<EarnCode>;
earnCodeTemplateEarnCodes?: ToMany<EarnCodeTemplateEarnCodes>;
title?: Strings;
}
export interface EarnCodeTemplateEarnCodes {
earnCodes?: ToMany<EarnCode>;
earnCodesTemplates?: ToMany<EarnCodeTemplate>;
}
export interface EarnCodeTypeLookup {
id?: number;
isDeleted?: boolean;
Expand Down

0 comments on commit 1547f2d

Please sign in to comment.