Skip to content

Commit

Permalink
Merge pull request #46 from LeKer29/feat/TP-6775
Browse files Browse the repository at this point in the history
[FEAT] update banks user account dto/interface
  • Loading branch information
meriamBenSassi authored Sep 21, 2021
2 parents 87f0745 + 1857587 commit aa9c2ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/Algoan.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export interface PostBanksUserAccountDTO {
savingsDetails?: string;
status?: 'MANUAL' | 'ACTIVE' | 'ERROR' | 'NOT_FOUND' | 'CLOSED';
owner?: { name?: string };
// eslint-disable-next-line
number?: string;
}

/**
Expand Down
2 changes: 2 additions & 0 deletions src/lib/BanksUser.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ export interface BanksUserAccount {
reference?: string;
savingsDetails?: string;
status?: 'MANUAL' | 'ACTIVE' | 'ERROR' | 'NOT_FOUND' | 'CLOSED';
// eslint-disable-next-line
number?: string;
}

/**
Expand Down

0 comments on commit aa9c2ab

Please sign in to comment.