Commit e5f5af29 authored by Adrian Pino's avatar Adrian Pino
Browse files

Fix docstrings in several functions within service_function_registration_request.py

parent 2ffbc07f
Loading
Loading
Loading
Loading
+18 −18
Original line number Original line Diff line number Diff line
@@ -192,63 +192,63 @@ class ServiceFunctionRegistrationRequest(Model):


    @property
    @property
    def required_resources(self) -> dict:
    def required_resources(self) -> dict:
        """Gets the application_ports of this ServiceFunctionRegistrationRequest.
        """Gets the required_resources of this ServiceFunctionRegistrationRequest.




        :return: The application_ports of this ServiceFunctionRegistrationRequest.
        :return: The required_resources of this ServiceFunctionRegistrationRequest.
        :rtype: List[int]
        :rtype: dict
        """
        """
        return self._required_resources
        return self._required_resources


    @required_resources.setter
    @required_resources.setter
    def required_resources(self, required_resources: dict):
    def required_resources(self, required_resources: dict):
        """Sets the application_ports of this ServiceFunctionRegistrationRequest.
        """Sets the required_resources of this ServiceFunctionRegistrationRequest.




        :param application_ports: The application_ports of this ServiceFunctionRegistrationRequest.
        :param required_resources: The required_resources of this ServiceFunctionRegistrationRequest.
        :type application_ports: List[int]
        :type required_resources: dict
        """
        """


        self._required_resources = required_resources
        self._required_resources = required_resources


    @property
    @property
    def app_provider(self) -> str:
    def app_provider(self) -> str:
        """Gets the application_ports of this ServiceFunctionRegistrationRequest.
        """Gets the app_provider of this ServiceFunctionRegistrationRequest.




        :return: The application_ports of this ServiceFunctionRegistrationRequest.
        :return: The app_provider of this ServiceFunctionRegistrationRequest.
        :rtype: List[int]
        :rtype: str
        """
        """
        return self._app_provider
        return self._app_provider


    @app_provider.setter
    @app_provider.setter
    def app_provider(self, app_provider: str):
    def app_provider(self, app_provider: str):
        """Sets the application_ports of this ServiceFunctionRegistrationRequest.
        """Sets the app_provider of this ServiceFunctionRegistrationRequest.




        :param application_ports: The application_ports of this ServiceFunctionRegistrationRequest.
        :param app_provider: The app_provider of this ServiceFunctionRegistrationRequest.
        :type application_ports: List[int]
        :type app_provider: str
        """
        """


        self._app_provider = app_provider
        self._app_provider = app_provider


    @property
    @property
    def version(self) -> str:
    def version(self) -> str:
        """Gets the application_ports of this ServiceFunctionRegistrationRequest.
        """Gets the version of this ServiceFunctionRegistrationRequest.




        :return: The application_ports of this ServiceFunctionRegistrationRequest.
        :return: The version of this ServiceFunctionRegistrationRequest.
        :rtype: List[int]
        :rtype: str
        """
        """
        return self._version
        return self._version


    @version.setter
    @version.setter
    def version(self, version: str):
    def version(self, version: str):
        """Sets the application_ports of this ServiceFunctionRegistrationRequest.
        """Sets the version of this ServiceFunctionRegistrationRequest.




        :param application_ports: The application_ports of this ServiceFunctionRegistrationRequest.
        :param version: The version of this ServiceFunctionRegistrationRequest.
        :type application_ports: List[int]
        :type version: str
        """
        """


        self._version = version
        self._version = version