ParameterInfo Source code in src/library_analyzer/processing/annotations/model/_annotations.py 347 348 349 350 351 352 353 354 355class ParameterInfo: type: ParameterType value: str value_type: str def __init__(self, parameter_type: ParameterType, value: str = "", value_type: str = "") -> None: self.type = parameter_type self.value = value self.value_type = value_type type: ParameterType = parameter_type instance-attribute ¶ value: str = value instance-attribute ¶ value_type: str = value_type instance-attribute ¶ __init__(parameter_type, value='', value_type='') ¶ Source code in src/library_analyzer/processing/annotations/model/_annotations.py 352 353 354 355def __init__(self, parameter_type: ParameterType, value: str = "", value_type: str = "") -> None: self.type = parameter_type self.value = value self.value_type = value_type