|
|
@ -342,6 +342,13 @@ class DecortAccountInfo(DecortController):
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
@property
|
|
|
|
def mapped_vinses_params(self) -> None | dict:
|
|
|
|
def mapped_vinses_params(self) -> None | dict:
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
Map the module parameter `vinses` to
|
|
|
|
|
|
|
|
parameters dictionary for the method
|
|
|
|
|
|
|
|
`DecortController.account_vinses`
|
|
|
|
|
|
|
|
(excluding for `account_id`).
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
input_params = self.amodule.params['vinses']
|
|
|
|
input_params = self.amodule.params['vinses']
|
|
|
|
if not input_params:
|
|
|
|
if not input_params:
|
|
|
|
return input_params
|
|
|
|
return input_params
|
|
|
|