cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
inline_response2005.py
Go to the documentation of this file.
1 # coding: utf-8
2 
3 """
4  cloudFPGA Resource Manager API
5 
6  No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7 
8  OpenAPI spec version: 0.8
9 
10  Generated by: https://github.com/swagger-api/swagger-codegen.git
11 """
12 
13 import pprint
14 import re # noqa: F401
15 
16 import six
17 
18 class InlineResponse2005(object):
19  """NOTE: This class is auto generated by the swagger code generator program.
20 
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  'runlevel': 'int'
32  }
33 
34  attribute_map = {
35  'runlevel': 'runlevel'
36  }
37 
38  def __init__(self, runlevel=None): # noqa: E501
39  """InlineResponse2005 - a model defined in Swagger""" # noqa: E501
40  self._runlevel_runlevel = None
41  self.discriminatordiscriminator = None
42  if runlevel is not None:
43  self.runlevelrunlevelrunlevelrunlevel = runlevel
44 
45  @property
46  def runlevel(self):
47  """Gets the runlevel of this InlineResponse2005. # noqa: E501
48 
49  The current runlevel # noqa: E501
50 
51  :return: The runlevel of this InlineResponse2005. # noqa: E501
52  :rtype: int
53  """
54  return self._runlevel_runlevel
55 
56  @runlevel.setter
57  def runlevel(self, runlevel):
58  """Sets the runlevel of this InlineResponse2005.
59 
60  The current runlevel # noqa: E501
61 
62  :param runlevel: The runlevel of this InlineResponse2005. # noqa: E501
63  :type: int
64  """
65 
66  self._runlevel_runlevel = runlevel
67 
68  def to_dict(self):
69  """Returns the model properties as a dict"""
70  result = {}
71 
72  for attr, _ in six.iteritems(self.swagger_typesswagger_types):
73  value = getattr(self, attr)
74  if isinstance(value, list):
75  result[attr] = list(map(
76  lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
77  value
78  ))
79  elif hasattr(value, "to_dict"):
80  result[attr] = value.to_dict()
81  elif isinstance(value, dict):
82  result[attr] = dict(map(
83  lambda item: (item[0], item[1].to_dict())
84  if hasattr(item[1], "to_dict") else item,
85  value.items()
86  ))
87  else:
88  result[attr] = value
89  if issubclass(InlineResponse2005, dict):
90  for key, value in self.items():
91  result[key] = value
92 
93  return result
94 
95  def to_str(self):
96  """Returns the string representation of the model"""
97  return pprint.pformat(self.to_dictto_dict())
98 
99  def __repr__(self):
100  """For `print` and `pprint`"""
101  return self.to_strto_str()
102 
103  def __eq__(self, other):
104  """Returns true if both objects are equal"""
105  if not isinstance(other, InlineResponse2005):
106  return False
107 
108  return self.__dict____dict__ == other.__dict__
109 
110  def __ne__(self, other):
111  """Returns true if both objects are not equal"""
112  return not self == other