Coverage for skema/gromet/metadata/literal_value.py: 41%
61 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
1# coding: utf-8
3"""
4 GroMEt Metadata spec
6 Grounded Model Exchange (GroMEt) Metadata schema specification __Using Swagger to Generate Class Structure__ To automatically generate Python or Java models corresponding to this document, you can use [swagger-codegen](https://swagger.io/tools/swagger-codegen/). We can use this to generate client code based off of this spec that will also generate the class structure. 1. Install via the method described for your operating system [here](https://github.com/swagger-api/swagger-codegen#Prerequisites). Make sure to install a version after 3.0 that will support openapi 3. 2. Run swagger-codegen with the options in the example below. The URL references where the yaml for this documentation is stored on github. Make sure to replace CURRENT_VERSION with the correct version. (The current version is `0.1.4`.) To generate Java classes rather, change the `-l python` to `-l java`. Change the value to the `-o` option to the desired output location. ``` swagger-codegen generate -l python -o ./client -i https://raw.githubusercontent.com/ml4ai/automates-v2/master/docs/source/gromet_metadata_v{CURRENT_VERSION}.yaml ``` 3. Once it executes, the client code will be generated at your specified location. For python, the classes will be located in `$OUTPUT_PATH/swagger_client/models/`. For java, they will be located in `$OUTPUT_PATH/src/main/java/io/swagger/client/model/` If generating GroMEt Metadata schema data model classes in SKEMA (AutoMATES), then after generating the above, follow the instructions here: ``` <automates>/automates/model_assembly/gromet/metadata/README.md ``` # noqa: E501
8 OpenAPI spec version: 0.1.8
9 Contact: claytonm@arizona.edu
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
11"""
13import pprint
14import re # noqa: F401
16import six
18class LiteralValue(object):
19 """NOTE: This class is auto generated by the swagger code generator program.
21 Do not edit the class manually.
22 """
23 """
24 Attributes:
25 swagger_types (dict): The key is attribute name
26 and the value is attribute type.
27 attribute_map (dict): The key is attribute name
28 and the value is json key in definition.
29 """
30 swagger_types = {
31 'gromet_type': 'str',
32 'value_type': 'str',
33 'value': 'object'
34 }
36 attribute_map = {
37 'gromet_type': 'gromet_type',
38 'value_type': 'value_type',
39 'value': 'value'
40 }
42 def __init__(self, gromet_type='LiteralValue', value_type=None, value=None): # noqa: E501
43 """LiteralValue - a model defined in Swagger""" # noqa: E501
44 self._gromet_type = None
45 self._value_type = None
46 self._value = None
47 self.discriminator = None
48 if gromet_type is not None:
49 self.gromet_type = gromet_type
50 if value_type is not None:
51 self.value_type = value_type
52 if value is not None:
53 self.value = value
55 @property
56 def gromet_type(self):
57 """Gets the gromet_type of this LiteralValue. # noqa: E501
60 :return: The gromet_type of this LiteralValue. # noqa: E501
61 :rtype: str
62 """
63 return self._gromet_type
65 @gromet_type.setter
66 def gromet_type(self, gromet_type):
67 """Sets the gromet_type of this LiteralValue.
70 :param gromet_type: The gromet_type of this LiteralValue. # noqa: E501
71 :type: str
72 """
74 self._gromet_type = gromet_type
76 @property
77 def value_type(self):
78 """Gets the value_type of this LiteralValue. # noqa: E501
80 The type of the value # noqa: E501
82 :return: The value_type of this LiteralValue. # noqa: E501
83 :rtype: str
84 """
85 return self._value_type
87 @value_type.setter
88 def value_type(self, value_type):
89 """Sets the value_type of this LiteralValue.
91 The type of the value # noqa: E501
93 :param value_type: The value_type of this LiteralValue. # noqa: E501
94 :type: str
95 """
97 self._value_type = value_type
99 @property
100 def value(self):
101 """Gets the value of this LiteralValue. # noqa: E501
103 The value as an object representing the value. Interpret the value object according to the value_type. # noqa: E501
105 :return: The value of this LiteralValue. # noqa: E501
106 :rtype: object
107 """
108 return self._value
110 @value.setter
111 def value(self, value):
112 """Sets the value of this LiteralValue.
114 The value as an object representing the value. Interpret the value object according to the value_type. # noqa: E501
116 :param value: The value of this LiteralValue. # noqa: E501
117 :type: object
118 """
120 self._value = value
122 def to_dict(self):
123 """Returns the model properties as a dict"""
124 result = {}
126 for attr, _ in six.iteritems(self.swagger_types):
127 value = getattr(self, attr)
128 if isinstance(value, list):
129 result[attr] = list(map(
130 lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
131 value
132 ))
133 elif hasattr(value, "to_dict"):
134 result[attr] = value.to_dict()
135 elif isinstance(value, dict):
136 result[attr] = dict(map(
137 lambda item: (item[0], item[1].to_dict())
138 if hasattr(item[1], "to_dict") else item,
139 value.items()
140 ))
141 else:
142 result[attr] = value
143 if issubclass(LiteralValue, dict):
144 for key, value in self.items():
145 result[key] = value
147 return result
149 def to_str(self):
150 """Returns the string representation of the model"""
151 return pprint.pformat(self.to_dict())
153 def __repr__(self):
154 """For `print` and `pprint`"""
155 return self.to_str()
157 def __eq__(self, other):
158 """Returns true if both objects are equal"""
159 if not isinstance(other, LiteralValue):
160 return False
162 return self.__dict__ == other.__dict__
164 def __ne__(self, other):
165 """Returns true if both objects are not equal"""
166 return not self == other