diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 668b476..5de8c38 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -5,6 +5,7 @@ README.md docs/Activity.md docs/ApprovedConsentRequest.md docs/BankAccountType.md +docs/CollectibleTypes.md docs/ConsentRequestReceiver.md docs/CreateDataProcessingAgreementRequestModel.md docs/CreateIndividualDataConsentRequest.md @@ -94,6 +95,7 @@ mydatamyconsent/model/__init__.py mydatamyconsent/model/activity.py mydatamyconsent/model/approved_consent_request.py mydatamyconsent/model/bank_account_type.py +mydatamyconsent/model/collectible_types.py mydatamyconsent/model/consent_request_receiver.py mydatamyconsent/model/create_data_processing_agreement_request_model.py mydatamyconsent/model/create_individual_data_consent_request.py diff --git a/README.md b/README.md index 9d557cf..d1828ab 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Class | Method | HTTP request | Description - [Activity](docs/Activity.md) - [ApprovedConsentRequest](docs/ApprovedConsentRequest.md) - [BankAccountType](docs/BankAccountType.md) + - [CollectibleTypes](docs/CollectibleTypes.md) - [ConsentRequestReceiver](docs/ConsentRequestReceiver.md) - [CreateDataProcessingAgreementRequestModel](docs/CreateDataProcessingAgreementRequestModel.md) - [CreateIndividualDataConsentRequest](docs/CreateIndividualDataConsentRequest.md) diff --git a/docs/CollectibleTypes.md b/docs/CollectibleTypes.md new file mode 100644 index 0000000..6df70e1 --- /dev/null +++ b/docs/CollectibleTypes.md @@ -0,0 +1,11 @@ +# CollectibleTypes + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**value** | **str** | | must be one of ["PersonalDetails", "Documents", "Financials", "Health", ] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/DataConsentDetailsDto.md b/docs/DataConsentDetailsDto.md index fb3b46e..5e37ee9 100644 --- a/docs/DataConsentDetailsDto.md +++ b/docs/DataConsentDetailsDto.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **consent_request_id** | **str** | | +**collectables** | [**[CollectibleTypes]**](CollectibleTypes.md) | | **title** | **str, none_type** | | [optional] **description** | **str, none_type** | | [optional] **data_life** | [**Life**](Life.md) | | [optional] diff --git a/mydatamyconsent/model/collectible_types.py b/mydatamyconsent/model/collectible_types.py new file mode 100644 index 0000000..913ab60 --- /dev/null +++ b/mydatamyconsent/model/collectible_types.py @@ -0,0 +1,285 @@ +""" + My Data My Consent - Developer API + + Unleashing the power of data consent by establishing trust. The Platform Core Developer API defines a set of capabilities that can be used to request, issue, manage and update data, documents and credentials by organizations. The API can be used to request, manage and update Decentralised Identifiers, Financial Data, Health Data issue Documents, Credentials directly or using OpenID Connect flows, and verify Messages signed with DIDs and much more. # noqa: E501 + + The version of the OpenAPI document: v1 + Contact: support@mydatamyconsent.com + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from mydatamyconsent.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from mydatamyconsent.exceptions import ApiAttributeError + + + +class CollectibleTypes(ModelSimple): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + ('value',): { + 'PERSONALDETAILS': "PersonalDetails", + 'DOCUMENTS': "Documents", + 'FINANCIALS': "Financials", + 'HEALTH': "Health", + }, + } + + validations = { + } + + additional_properties_type = None + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + return { + 'value': (str,), + } + + @cached_property + def discriminator(): + return None + + + attribute_map = {} + + read_only_vars = set() + + _composed_schemas = None + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, *args, **kwargs): + """CollectibleTypes - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str):, must be one of ["PersonalDetails", "Documents", "Financials", "Health", ] # noqa: E501 + + Keyword Args: + value (str):, must be one of ["PersonalDetails", "Documents", "Financials", "Health", ] # noqa: E501 + _check_type (bool): if True, values for parameters in openapi_types + will be type checked and a TypeError will be + raised if the wrong type is input. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + self.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, *args, **kwargs): + """CollectibleTypes - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str):, must be one of ["PersonalDetails", "Documents", "Financials", "Health", ] # noqa: E501 + + Keyword Args: + value (str):, must be one of ["PersonalDetails", "Documents", "Financials", "Health", ] # noqa: E501 + _check_type (bool): if True, values for parameters in openapi_types + will be type checked and a TypeError will be + raised if the wrong type is input. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + self.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + return self diff --git a/mydatamyconsent/model/data_consent_details_dto.py b/mydatamyconsent/model/data_consent_details_dto.py index 7653906..11f6bd6 100644 --- a/mydatamyconsent/model/data_consent_details_dto.py +++ b/mydatamyconsent/model/data_consent_details_dto.py @@ -31,10 +31,12 @@ def lazy_import(): + from mydatamyconsent.model.collectible_types import CollectibleTypes from mydatamyconsent.model.data_consent_document_details_dto import DataConsentDocumentDetailsDto from mydatamyconsent.model.data_consent_status import DataConsentStatus from mydatamyconsent.model.life import Life from mydatamyconsent.model.requester import Requester + globals()['CollectibleTypes'] = CollectibleTypes globals()['DataConsentDocumentDetailsDto'] = DataConsentDocumentDetailsDto globals()['DataConsentStatus'] = DataConsentStatus globals()['Life'] = Life @@ -88,6 +90,7 @@ def openapi_types(): lazy_import() return { 'consent_request_id': (str,), # noqa: E501 + 'collectables': ([CollectibleTypes],), # noqa: E501 'title': (str, none_type,), # noqa: E501 'description': (str, none_type,), # noqa: E501 'data_life': (Life,), # noqa: E501 @@ -110,6 +113,7 @@ def discriminator(): attribute_map = { 'consent_request_id': 'consentRequestId', # noqa: E501 + 'collectables': 'collectables', # noqa: E501 'title': 'title', # noqa: E501 'description': 'description', # noqa: E501 'data_life': 'dataLife', # noqa: E501 @@ -132,11 +136,12 @@ def discriminator(): @classmethod @convert_js_args_to_python_args - def _from_openapi_data(cls, consent_request_id, *args, **kwargs): # noqa: E501 + def _from_openapi_data(cls, consent_request_id, collectables, *args, **kwargs): # noqa: E501 """DataConsentDetailsDto - a model defined in OpenAPI Args: consent_request_id (str): + collectables ([CollectibleTypes]): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -210,6 +215,7 @@ def _from_openapi_data(cls, consent_request_id, *args, **kwargs): # noqa: E501 self._visited_composed_classes = _visited_composed_classes + (self.__class__,) self.consent_request_id = consent_request_id + self.collectables = collectables for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ @@ -230,11 +236,12 @@ def _from_openapi_data(cls, consent_request_id, *args, **kwargs): # noqa: E501 ]) @convert_js_args_to_python_args - def __init__(self, consent_request_id, *args, **kwargs): # noqa: E501 + def __init__(self, consent_request_id, collectables, *args, **kwargs): # noqa: E501 """DataConsentDetailsDto - a model defined in OpenAPI Args: consent_request_id (str): + collectables ([CollectibleTypes]): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -306,6 +313,7 @@ def __init__(self, consent_request_id, *args, **kwargs): # noqa: E501 self._visited_composed_classes = _visited_composed_classes + (self.__class__,) self.consent_request_id = consent_request_id + self.collectables = collectables for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ diff --git a/mydatamyconsent/models/__init__.py b/mydatamyconsent/models/__init__.py index 0a98b50..b2232d4 100644 --- a/mydatamyconsent/models/__init__.py +++ b/mydatamyconsent/models/__init__.py @@ -12,6 +12,7 @@ from mydatamyconsent.model.activity import Activity from mydatamyconsent.model.approved_consent_request import ApprovedConsentRequest from mydatamyconsent.model.bank_account_type import BankAccountType +from mydatamyconsent.model.collectible_types import CollectibleTypes from mydatamyconsent.model.consent_request_receiver import ConsentRequestReceiver from mydatamyconsent.model.create_data_processing_agreement_request_model import CreateDataProcessingAgreementRequestModel from mydatamyconsent.model.create_individual_data_consent_request import CreateIndividualDataConsentRequest