|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +""" |
| 4 | + Samsara API |
| 5 | +
|
| 6 | + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 |
| 7 | +
|
| 8 | + The version of the OpenAPI document: 2020-06-15 |
| 9 | + Generated by: https://openapi-generator.tech |
| 10 | +""" |
| 11 | + |
| 12 | + |
| 13 | +import pprint |
| 14 | +import re # noqa: F401 |
| 15 | + |
| 16 | +import six |
| 17 | + |
| 18 | +from samsara.configuration import Configuration |
| 19 | + |
| 20 | + |
| 21 | +class VehicleLocationAddress(object): |
| 22 | + """NOTE: This class is auto generated by OpenAPI Generator. |
| 23 | + Ref: https://openapi-generator.tech |
| 24 | +
|
| 25 | + Do not edit the class manually. |
| 26 | + """ |
| 27 | + |
| 28 | + """ |
| 29 | + Attributes: |
| 30 | + openapi_types (dict): The key is attribute name |
| 31 | + and the value is attribute type. |
| 32 | + attribute_map (dict): The key is attribute name |
| 33 | + and the value is json key in definition. |
| 34 | + """ |
| 35 | + openapi_types = { |
| 36 | + 'id': 'str', |
| 37 | + 'name': 'str' |
| 38 | + } |
| 39 | + |
| 40 | + attribute_map = { |
| 41 | + 'id': 'id', |
| 42 | + 'name': 'name' |
| 43 | + } |
| 44 | + |
| 45 | + def __init__(self, id=None, name=None, local_vars_configuration=None): # noqa: E501 |
| 46 | + """VehicleLocationAddress - a model defined in OpenAPI""" # noqa: E501 |
| 47 | + if local_vars_configuration is None: |
| 48 | + local_vars_configuration = Configuration() |
| 49 | + self.local_vars_configuration = local_vars_configuration |
| 50 | + |
| 51 | + self._id = None |
| 52 | + self._name = None |
| 53 | + self.discriminator = None |
| 54 | + |
| 55 | + if id is not None: |
| 56 | + self.id = id |
| 57 | + if name is not None: |
| 58 | + self.name = name |
| 59 | + |
| 60 | + @property |
| 61 | + def id(self): |
| 62 | + """Gets the id of this VehicleLocationAddress. # noqa: E501 |
| 63 | +
|
| 64 | + Id of the address. # noqa: E501 |
| 65 | +
|
| 66 | + :return: The id of this VehicleLocationAddress. # noqa: E501 |
| 67 | + :rtype: str |
| 68 | + """ |
| 69 | + return self._id |
| 70 | + |
| 71 | + @id.setter |
| 72 | + def id(self, id): |
| 73 | + """Sets the id of this VehicleLocationAddress. |
| 74 | +
|
| 75 | + Id of the address. # noqa: E501 |
| 76 | +
|
| 77 | + :param id: The id of this VehicleLocationAddress. # noqa: E501 |
| 78 | + :type: str |
| 79 | + """ |
| 80 | + |
| 81 | + self._id = id |
| 82 | + |
| 83 | + @property |
| 84 | + def name(self): |
| 85 | + """Gets the name of this VehicleLocationAddress. # noqa: E501 |
| 86 | +
|
| 87 | + Name of address. # noqa: E501 |
| 88 | +
|
| 89 | + :return: The name of this VehicleLocationAddress. # noqa: E501 |
| 90 | + :rtype: str |
| 91 | + """ |
| 92 | + return self._name |
| 93 | + |
| 94 | + @name.setter |
| 95 | + def name(self, name): |
| 96 | + """Sets the name of this VehicleLocationAddress. |
| 97 | +
|
| 98 | + Name of address. # noqa: E501 |
| 99 | +
|
| 100 | + :param name: The name of this VehicleLocationAddress. # noqa: E501 |
| 101 | + :type: str |
| 102 | + """ |
| 103 | + |
| 104 | + self._name = name |
| 105 | + |
| 106 | + def to_dict(self): |
| 107 | + """Returns the model properties as a dict""" |
| 108 | + result = {} |
| 109 | + |
| 110 | + for attr, _ in six.iteritems(self.openapi_types): |
| 111 | + value = getattr(self, attr) |
| 112 | + if isinstance(value, list): |
| 113 | + result[attr] = list(map( |
| 114 | + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, |
| 115 | + value |
| 116 | + )) |
| 117 | + elif hasattr(value, "to_dict"): |
| 118 | + result[attr] = value.to_dict() |
| 119 | + elif isinstance(value, dict): |
| 120 | + result[attr] = dict(map( |
| 121 | + lambda item: (item[0], item[1].to_dict()) |
| 122 | + if hasattr(item[1], "to_dict") else item, |
| 123 | + value.items() |
| 124 | + )) |
| 125 | + else: |
| 126 | + result[attr] = value |
| 127 | + |
| 128 | + return result |
| 129 | + |
| 130 | + def to_str(self): |
| 131 | + """Returns the string representation of the model""" |
| 132 | + return pprint.pformat(self.to_dict()) |
| 133 | + |
| 134 | + def __repr__(self): |
| 135 | + """For `print` and `pprint`""" |
| 136 | + return self.to_str() |
| 137 | + |
| 138 | + def __eq__(self, other): |
| 139 | + """Returns true if both objects are equal""" |
| 140 | + if not isinstance(other, VehicleLocationAddress): |
| 141 | + return False |
| 142 | + |
| 143 | + return self.to_dict() == other.to_dict() |
| 144 | + |
| 145 | + def __ne__(self, other): |
| 146 | + """Returns true if both objects are not equal""" |
| 147 | + if not isinstance(other, VehicleLocationAddress): |
| 148 | + return True |
| 149 | + |
| 150 | + return self.to_dict() != other.to_dict() |
0 commit comments