-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee8ed54
commit 4441dc0
Showing
4 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/** Model of CompanyCard's Shared NVP record */ | ||
// TODO update information here during implementation Add Company Card flow | ||
type CompanyCards = { | ||
/** Company cards object */ | ||
companyCards: { | ||
/** Company card info key */ | ||
cdfbmo: CompanyCardInfo; | ||
}; | ||
/** Company cards nicknames */ | ||
companyCardNicknames: { | ||
/** Company cards info key */ | ||
cdfbmo: string; | ||
}; | ||
}; | ||
/** | ||
* Model of company card information | ||
*/ | ||
type CompanyCardInfo = { | ||
/** Company card pending state */ | ||
pending: boolean; | ||
|
||
/** Company card asr state */ | ||
asrEnabled: boolean; | ||
|
||
/** Company card force reimbursable value */ | ||
forceReimbursable: string; | ||
|
||
/** Company card liability type */ | ||
liabilityType: string; | ||
|
||
/** Company card preferred policy */ | ||
preferredPolicy: string; | ||
|
||
/** Company card report title format */ | ||
reportTitleFormat: string; | ||
|
||
/** Company card statement period */ | ||
statementPeriodEndDay: string; | ||
}; | ||
|
||
export default CompanyCards; |
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