Coverage for skema/gromet/fn/function_type.py: 54%
46 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 Grounded Model Exchange (GroMEt) schema for Function Networks
6 This document defines the GroMEt Function Network data model. Note that Metadata is defined in separate spec. __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/). This can be used to generate the client code based off of this spec, and in the process this will generate the data model 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.7`.) 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_FN_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/skema.gromet.fn.`. For java, they will be located in `$OUTPUT_PATH/src/main/java/io/swagger/client/model/` If generating GroMEt schema data model classes in SKEMA (AutoMATES), then after generating the above, follow the instructions here: ``` <automates>/automates/model_assembly/gromet/model/README.md ``` # noqa: E501
8 OpenAPI spec version: 0.1.10
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 FunctionType(object):
19 """NOTE: This class is auto generated by the swagger code generator program.
21 Do not edit the class manually.
22 """
24 """
25 allowed enum values
26 """
27 FUNCTION = "FUNCTION"
28 EXPRESSION = "EXPRESSION"
29 PREDICATE = "PREDICATE"
30 MODULE = "MODULE"
31 ABSTRACT = "ABSTRACT"
32 LABEL = "LABEL"
33 GOTO = "GOTO"
34 LANGUAGE_PRIMITIVE = "LANGUAGE_PRIMITIVE"
35 IMPORTED = "IMPORTED"
36 IMPORTED_METHOD = "IMPORTED_METHOD"
37 UNKNOWN_METHOD = "UNKNOWN_METHOD"
38 LITERAL = "LITERAL"
39 """
40 Attributes:
41 swagger_types (dict): The key is attribute name
42 and the value is attribute type.
43 attribute_map (dict): The key is attribute name
44 and the value is json key in definition.
45 """
46 swagger_types = {
47 }
49 attribute_map = {
50 }
52 def __init__(self): # noqa: E501
53 """FunctionType - a model defined in Swagger""" # noqa: E501
54 self.discriminator = None
56 def to_dict(self):
57 """Returns the model properties as a dict"""
58 result = {}
60 for attr, _ in six.iteritems(self.swagger_types):
61 value = getattr(self, attr)
62 if isinstance(value, list):
63 result[attr] = list(map(
64 lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
65 value
66 ))
67 elif hasattr(value, "to_dict"):
68 result[attr] = value.to_dict()
69 elif isinstance(value, dict):
70 result[attr] = dict(map(
71 lambda item: (item[0], item[1].to_dict())
72 if hasattr(item[1], "to_dict") else item,
73 value.items()
74 ))
75 else:
76 result[attr] = value
77 if issubclass(FunctionType, dict):
78 for key, value in self.items():
79 result[key] = value
81 return result
83 def to_str(self):
84 """Returns the string representation of the model"""
85 return pprint.pformat(self.to_dict())
87 def __repr__(self):
88 """For `print` and `pprint`"""
89 return self.to_str()
91 def __eq__(self, other):
92 """Returns true if both objects are equal"""
93 if not isinstance(other, FunctionType):
94 return False
96 return self.__dict__ == other.__dict__
98 def __ne__(self, other):
99 """Returns true if both objects are not equal"""
100 return not self == other