RIC-642 related changes: REST subscription, rnib enhancements, symptomdata, rest...
[ric-plt/xapp-frame-py.git] / ricxappframe / subsclient / models / x_app_config.py
diff --git a/ricxappframe/subsclient/models/x_app_config.py b/ricxappframe/subsclient/models/x_app_config.py
new file mode 100644 (file)
index 0000000..77a1b94
--- /dev/null
@@ -0,0 +1,153 @@
+# coding: utf-8
+
+"""
+    RIC subscription
+
+    This is the initial REST API for RIC subscription  # noqa: E501
+
+    OpenAPI spec version: 0.0.4
+    
+    Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+import pprint
+import re  # noqa: F401
+
+import six
+
+from ricxappframe.subsclient.configuration import Configuration
+
+
+class XAppConfig(object):
+    """NOTE: This class is auto generated by the swagger code generator program.
+
+    Do not edit the class manually.
+    """
+
+    """
+    Attributes:
+      swagger_types (dict): The key is attribute name
+                            and the value is attribute type.
+      attribute_map (dict): The key is attribute name
+                            and the value is json key in definition.
+    """
+    swagger_types = {
+        'metadata': 'ConfigMetadata',
+        'config': 'object'
+    }
+
+    attribute_map = {
+        'metadata': 'metadata',
+        'config': 'config'
+    }
+
+    def __init__(self, metadata=None, config=None, _configuration=None):  # noqa: E501
+        """XAppConfig - a model defined in Swagger"""  # noqa: E501
+        if _configuration is None:
+            _configuration = Configuration()
+        self._configuration = _configuration
+
+        self._metadata = None
+        self._config = None
+        self.discriminator = None
+
+        self.metadata = metadata
+        self.config = config
+
+    @property
+    def metadata(self):
+        """Gets the metadata of this XAppConfig.  # noqa: E501
+
+
+        :return: The metadata of this XAppConfig.  # noqa: E501
+        :rtype: ConfigMetadata
+        """
+        return self._metadata
+
+    @metadata.setter
+    def metadata(self, metadata):
+        """Sets the metadata of this XAppConfig.
+
+
+        :param metadata: The metadata of this XAppConfig.  # noqa: E501
+        :type: ConfigMetadata
+        """
+        if self._configuration.client_side_validation and metadata is None:
+            raise ValueError("Invalid value for `metadata`, must not be `None`")  # noqa: E501
+
+        self._metadata = metadata
+
+    @property
+    def config(self):
+        """Gets the config of this XAppConfig.  # noqa: E501
+
+        Configuration in JSON format  # noqa: E501
+
+        :return: The config of this XAppConfig.  # noqa: E501
+        :rtype: object
+        """
+        return self._config
+
+    @config.setter
+    def config(self, config):
+        """Sets the config of this XAppConfig.
+
+        Configuration in JSON format  # noqa: E501
+
+        :param config: The config of this XAppConfig.  # noqa: E501
+        :type: object
+        """
+        if self._configuration.client_side_validation and config is None:
+            raise ValueError("Invalid value for `config`, must not be `None`")  # noqa: E501
+
+        self._config = config
+
+    def to_dict(self):
+        """Returns the model properties as a dict"""
+        result = {}
+
+        for attr, _ in six.iteritems(self.swagger_types):
+            value = getattr(self, attr)
+            if isinstance(value, list):
+                result[attr] = list(map(
+                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
+                    value
+                ))
+            elif hasattr(value, "to_dict"):
+                result[attr] = value.to_dict()
+            elif isinstance(value, dict):
+                result[attr] = dict(map(
+                    lambda item: (item[0], item[1].to_dict())
+                    if hasattr(item[1], "to_dict") else item,
+                    value.items()
+                ))
+            else:
+                result[attr] = value
+        if issubclass(XAppConfig, dict):
+            for key, value in self.items():
+                result[key] = value
+
+        return result
+
+    def to_str(self):
+        """Returns the string representation of the model"""
+        return pprint.pformat(self.to_dict())
+
+    def __repr__(self):
+        """For `print` and `pprint`"""
+        return self.to_str()
+
+    def __eq__(self, other):
+        """Returns true if both objects are equal"""
+        if not isinstance(other, XAppConfig):
+            return False
+
+        return self.to_dict() == other.to_dict()
+
+    def __ne__(self, other):
+        """Returns true if both objects are not equal"""
+        if not isinstance(other, XAppConfig):
+            return True
+
+        return self.to_dict() != other.to_dict()