|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +""" |
| 4 | + Patch API V2 |
| 5 | +
|
| 6 | + The core API used to integrate with Patch's service # noqa: E501 |
| 7 | +
|
| 8 | + The version of the OpenAPI document: 2 |
| 9 | + |
| 10 | + Generated by: https://openapi-generator.tech |
| 11 | +""" |
| 12 | + |
| 13 | + |
| 14 | +import pprint |
| 15 | +import re # noqa: F401 |
| 16 | + |
| 17 | +import six |
| 18 | + |
| 19 | +from patch_api.configuration import Configuration |
| 20 | + |
| 21 | + |
| 22 | +class Disclaimer(object): |
| 23 | + """NOTE: This class is auto generated by OpenAPI Generator. |
| 24 | + Ref: https://openapi-generator.tech |
| 25 | +
|
| 26 | + Do not edit the class manually. |
| 27 | + """ |
| 28 | + |
| 29 | + """ |
| 30 | + Attributes: |
| 31 | + openapi_types (dict): The key is attribute name |
| 32 | + and the value is attribute type. |
| 33 | + attribute_map (dict): The key is attribute name |
| 34 | + and the value is json key in definition. |
| 35 | + """ |
| 36 | + openapi_types = { |
| 37 | + "body": "str", |
| 38 | + "header": "str", |
| 39 | + "severity": "str", |
| 40 | + "link_text": "str", |
| 41 | + "link_destination": "str", |
| 42 | + } |
| 43 | + |
| 44 | + attribute_map = { |
| 45 | + "body": "body", |
| 46 | + "header": "header", |
| 47 | + "severity": "severity", |
| 48 | + "link_text": "link_text", |
| 49 | + "link_destination": "link_destination", |
| 50 | + } |
| 51 | + |
| 52 | + def __init__( |
| 53 | + self, |
| 54 | + body=None, |
| 55 | + header=None, |
| 56 | + severity=None, |
| 57 | + link_text=None, |
| 58 | + link_destination=None, |
| 59 | + local_vars_configuration=None, |
| 60 | + ): # noqa: E501 |
| 61 | + """Disclaimer - a model defined in OpenAPI""" # noqa: E501 |
| 62 | + if local_vars_configuration is None: |
| 63 | + local_vars_configuration = Configuration() |
| 64 | + self.local_vars_configuration = local_vars_configuration |
| 65 | + |
| 66 | + self._body = None |
| 67 | + self._header = None |
| 68 | + self._severity = None |
| 69 | + self._link_text = None |
| 70 | + self._link_destination = None |
| 71 | + self.discriminator = None |
| 72 | + |
| 73 | + self.body = body |
| 74 | + self.header = header |
| 75 | + self.severity = severity |
| 76 | + self.link_text = link_text |
| 77 | + self.link_destination = link_destination |
| 78 | + |
| 79 | + @property |
| 80 | + def body(self): |
| 81 | + """Gets the body of this Disclaimer. # noqa: E501 |
| 82 | +
|
| 83 | + The body of the disclaimer. # noqa: E501 |
| 84 | +
|
| 85 | + :return: The body of this Disclaimer. # noqa: E501 |
| 86 | + :rtype: str |
| 87 | + """ |
| 88 | + return self._body |
| 89 | + |
| 90 | + @body.setter |
| 91 | + def body(self, body): |
| 92 | + """Sets the body of this Disclaimer. |
| 93 | +
|
| 94 | + The body of the disclaimer. # noqa: E501 |
| 95 | +
|
| 96 | + :param body: The body of this Disclaimer. # noqa: E501 |
| 97 | + :type: str |
| 98 | + """ |
| 99 | + |
| 100 | + self._body = body |
| 101 | + |
| 102 | + @property |
| 103 | + def header(self): |
| 104 | + """Gets the header of this Disclaimer. # noqa: E501 |
| 105 | +
|
| 106 | + The header for the disclaimer. # noqa: E501 |
| 107 | +
|
| 108 | + :return: The header of this Disclaimer. # noqa: E501 |
| 109 | + :rtype: str |
| 110 | + """ |
| 111 | + return self._header |
| 112 | + |
| 113 | + @header.setter |
| 114 | + def header(self, header): |
| 115 | + """Sets the header of this Disclaimer. |
| 116 | +
|
| 117 | + The header for the disclaimer. # noqa: E501 |
| 118 | +
|
| 119 | + :param header: The header of this Disclaimer. # noqa: E501 |
| 120 | + :type: str |
| 121 | + """ |
| 122 | + if ( |
| 123 | + self.local_vars_configuration.client_side_validation and header is None |
| 124 | + ): # noqa: E501 |
| 125 | + raise ValueError( |
| 126 | + "Invalid value for `header`, must not be `None`" |
| 127 | + ) # noqa: E501 |
| 128 | + |
| 129 | + self._header = header |
| 130 | + |
| 131 | + @property |
| 132 | + def severity(self): |
| 133 | + """Gets the severity of this Disclaimer. # noqa: E501 |
| 134 | +
|
| 135 | + The severity of the disclaimer. # noqa: E501 |
| 136 | +
|
| 137 | + :return: The severity of this Disclaimer. # noqa: E501 |
| 138 | + :rtype: str |
| 139 | + """ |
| 140 | + return self._severity |
| 141 | + |
| 142 | + @severity.setter |
| 143 | + def severity(self, severity): |
| 144 | + """Sets the severity of this Disclaimer. |
| 145 | +
|
| 146 | + The severity of the disclaimer. # noqa: E501 |
| 147 | +
|
| 148 | + :param severity: The severity of this Disclaimer. # noqa: E501 |
| 149 | + :type: str |
| 150 | + """ |
| 151 | + if ( |
| 152 | + self.local_vars_configuration.client_side_validation and severity is None |
| 153 | + ): # noqa: E501 |
| 154 | + raise ValueError( |
| 155 | + "Invalid value for `severity`, must not be `None`" |
| 156 | + ) # noqa: E501 |
| 157 | + |
| 158 | + self._severity = severity |
| 159 | + |
| 160 | + @property |
| 161 | + def link_text(self): |
| 162 | + """Gets the link_text of this Disclaimer. # noqa: E501 |
| 163 | +
|
| 164 | + The text for the provided link. # noqa: E501 |
| 165 | +
|
| 166 | + :return: The link_text of this Disclaimer. # noqa: E501 |
| 167 | + :rtype: str |
| 168 | + """ |
| 169 | + return self._link_text |
| 170 | + |
| 171 | + @link_text.setter |
| 172 | + def link_text(self, link_text): |
| 173 | + """Sets the link_text of this Disclaimer. |
| 174 | +
|
| 175 | + The text for the provided link. # noqa: E501 |
| 176 | +
|
| 177 | + :param link_text: The link_text of this Disclaimer. # noqa: E501 |
| 178 | + :type: str |
| 179 | + """ |
| 180 | + |
| 181 | + self._link_text = link_text |
| 182 | + |
| 183 | + @property |
| 184 | + def link_destination(self): |
| 185 | + """Gets the link_destination of this Disclaimer. # noqa: E501 |
| 186 | +
|
| 187 | + The destination of the provided link. # noqa: E501 |
| 188 | +
|
| 189 | + :return: The link_destination of this Disclaimer. # noqa: E501 |
| 190 | + :rtype: str |
| 191 | + """ |
| 192 | + return self._link_destination |
| 193 | + |
| 194 | + @link_destination.setter |
| 195 | + def link_destination(self, link_destination): |
| 196 | + """Sets the link_destination of this Disclaimer. |
| 197 | +
|
| 198 | + The destination of the provided link. # noqa: E501 |
| 199 | +
|
| 200 | + :param link_destination: The link_destination of this Disclaimer. # noqa: E501 |
| 201 | + :type: str |
| 202 | + """ |
| 203 | + |
| 204 | + self._link_destination = link_destination |
| 205 | + |
| 206 | + def to_dict(self): |
| 207 | + """Returns the model properties as a dict""" |
| 208 | + result = {} |
| 209 | + |
| 210 | + for attr, _ in six.iteritems(self.openapi_types): |
| 211 | + value = getattr(self, attr) |
| 212 | + if isinstance(value, list): |
| 213 | + result[attr] = list( |
| 214 | + map(lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value) |
| 215 | + ) |
| 216 | + elif hasattr(value, "to_dict"): |
| 217 | + result[attr] = value.to_dict() |
| 218 | + elif isinstance(value, dict): |
| 219 | + result[attr] = dict( |
| 220 | + map( |
| 221 | + lambda item: (item[0], item[1].to_dict()) |
| 222 | + if hasattr(item[1], "to_dict") |
| 223 | + else item, |
| 224 | + value.items(), |
| 225 | + ) |
| 226 | + ) |
| 227 | + else: |
| 228 | + result[attr] = value |
| 229 | + |
| 230 | + return result |
| 231 | + |
| 232 | + def to_str(self): |
| 233 | + """Returns the string representation of the model""" |
| 234 | + return pprint.pformat(self.to_dict()) |
| 235 | + |
| 236 | + def __repr__(self): |
| 237 | + """For `print` and `pprint`""" |
| 238 | + return self.to_str() |
| 239 | + |
| 240 | + def __eq__(self, other): |
| 241 | + """Returns true if both objects are equal""" |
| 242 | + if not isinstance(other, Disclaimer): |
| 243 | + return False |
| 244 | + |
| 245 | + return self.to_dict() == other.to_dict() |
| 246 | + |
| 247 | + def __ne__(self, other): |
| 248 | + """Returns true if both objects are not equal""" |
| 249 | + if not isinstance(other, Disclaimer): |
| 250 | + return True |
| 251 | + |
| 252 | + return self.to_dict() != other.to_dict() |
0 commit comments