-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description This PR includes the following proposed change(s): - clicking on renew/update/replace and having profile in the correct state then navigate to correct wizard.
- Loading branch information
1 parent
5cf0736
commit 971ed13
Showing
29 changed files
with
2,541 additions
and
2,870 deletions.
There are no files selected for viewing
29 changes: 14 additions & 15 deletions
29
src/Spd.Presentation.Licensing/ClientApp/src/app/api/models/licence-response.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
import { LicenceTermCode } from './licence-term-code'; | ||
import { WorkerLicenceTypeCode } from './worker-licence-type-code'; | ||
export interface LicenceResponse { | ||
expiryDate?: string; | ||
licenceAppId?: null | string; | ||
licenceHolderFirstName?: null | string; | ||
licenceHolderLastName?: null | string; | ||
licenceId?: null | string; | ||
licenceNumber?: null | string; | ||
licenceTermCode?: LicenceTermCode; | ||
nameOnCard?: null | string; | ||
workerLicenceTypeCode?: WorkerLicenceTypeCode; | ||
} | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
import { LicenceTermCode } from './licence-term-code'; | ||
import { WorkerLicenceTypeCode } from './worker-licence-type-code'; | ||
export interface LicenceResponse { | ||
expiryDate?: string; | ||
licenceAppId?: null | string; | ||
licenceHolderName?: null | string; | ||
licenceId?: null | string; | ||
licenceNumber?: null | string; | ||
licenceTermCode?: LicenceTermCode; | ||
nameOnCard?: null | string; | ||
workerLicenceTypeCode?: WorkerLicenceTypeCode; | ||
} |
Oops, something went wrong.