forked from open-source-modelling/Open_Source_Economic_Model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigurationClass.py
More file actions
21 lines (20 loc) · 808 Bytes
/
ConfigurationClass.py
File metadata and controls
21 lines (20 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Configuration:
def __init__(self) -> None:
self.bond_portfolio: str = ""
self.trace_enabled: bool = False
self.logging_level: str = ""
self.logging_file_name: str = ""
self.intermediate_path: str = ""
self.intermediate_enabled: bool = False
self.intermediate_equity_portfolio: str = ""
self.intermediate_cash_portfolio: str = ""
self.input_path: str = ""
self.input_cash_portfolio: str = ""
self.input_curves: str = ""
self.input_equity_portfolio: str = ""
self.input_bond_portfolio: str = ""
self.input_param_no_VA: str = ""
self.input_spread: str = ""
self.input_parameters: str = ""
self.input_liability_cashflow: str = ""
self.output_path: str = ""