|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +""" |
| 4 | + Asana |
| 5 | +
|
| 6 | + This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/openapi/master/defs/asana_oas.yaml). # noqa: E501 |
| 7 | +
|
| 8 | + OpenAPI spec version: 1.0 |
| 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 AttachmentResponseParentCreatedBy(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 | + 'gid': 'str', |
| 32 | + 'resource_type': 'str' |
| 33 | + } |
| 34 | + |
| 35 | + attribute_map = { |
| 36 | + 'gid': 'gid', |
| 37 | + 'resource_type': 'resource_type' |
| 38 | + } |
| 39 | + |
| 40 | + def __init__(self, gid=None, resource_type=None): # noqa: E501 |
| 41 | + """AttachmentResponseParentCreatedBy - a model defined in Swagger""" # noqa: E501 |
| 42 | + self._gid = None |
| 43 | + self._resource_type = None |
| 44 | + self.discriminator = None |
| 45 | + if gid is not None: |
| 46 | + self.gid = gid |
| 47 | + if resource_type is not None: |
| 48 | + self.resource_type = resource_type |
| 49 | + |
| 50 | + @property |
| 51 | + def gid(self): |
| 52 | + """Gets the gid of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 53 | +
|
| 54 | + Globally unique identifier of the resource. # noqa: E501 |
| 55 | +
|
| 56 | + :return: The gid of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 57 | + :rtype: str |
| 58 | + """ |
| 59 | + return self._gid |
| 60 | + |
| 61 | + @gid.setter |
| 62 | + def gid(self, gid): |
| 63 | + """Sets the gid of this AttachmentResponseParentCreatedBy. |
| 64 | +
|
| 65 | + Globally unique identifier of the resource. # noqa: E501 |
| 66 | +
|
| 67 | + :param gid: The gid of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 68 | + :type: str |
| 69 | + """ |
| 70 | + |
| 71 | + self._gid = gid |
| 72 | + |
| 73 | + @property |
| 74 | + def resource_type(self): |
| 75 | + """Gets the resource_type of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 76 | +
|
| 77 | + The type of resource. # noqa: E501 |
| 78 | +
|
| 79 | + :return: The resource_type of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 80 | + :rtype: str |
| 81 | + """ |
| 82 | + return self._resource_type |
| 83 | + |
| 84 | + @resource_type.setter |
| 85 | + def resource_type(self, resource_type): |
| 86 | + """Sets the resource_type of this AttachmentResponseParentCreatedBy. |
| 87 | +
|
| 88 | + The type of resource. # noqa: E501 |
| 89 | +
|
| 90 | + :param resource_type: The resource_type of this AttachmentResponseParentCreatedBy. # noqa: E501 |
| 91 | + :type: str |
| 92 | + """ |
| 93 | + |
| 94 | + self._resource_type = resource_type |
| 95 | + |
| 96 | + def to_dict(self): |
| 97 | + """Returns the model properties as a dict""" |
| 98 | + result = {} |
| 99 | + |
| 100 | + for attr, _ in six.iteritems(self.swagger_types): |
| 101 | + value = getattr(self, attr) |
| 102 | + if isinstance(value, list): |
| 103 | + result[attr] = list(map( |
| 104 | + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, |
| 105 | + value |
| 106 | + )) |
| 107 | + elif hasattr(value, "to_dict"): |
| 108 | + result[attr] = value.to_dict() |
| 109 | + elif isinstance(value, dict): |
| 110 | + result[attr] = dict(map( |
| 111 | + lambda item: (item[0], item[1].to_dict()) |
| 112 | + if hasattr(item[1], "to_dict") else item, |
| 113 | + value.items() |
| 114 | + )) |
| 115 | + else: |
| 116 | + result[attr] = value |
| 117 | + if issubclass(AttachmentResponseParentCreatedBy, dict): |
| 118 | + for key, value in self.items(): |
| 119 | + result[key] = value |
| 120 | + |
| 121 | + return result |
| 122 | + |
| 123 | + def to_str(self): |
| 124 | + """Returns the string representation of the model""" |
| 125 | + return pprint.pformat(self.to_dict()) |
| 126 | + |
| 127 | + def __repr__(self): |
| 128 | + """For `print` and `pprint`""" |
| 129 | + return self.to_str() |
| 130 | + |
| 131 | + def __eq__(self, other): |
| 132 | + """Returns true if both objects are equal""" |
| 133 | + if not isinstance(other, AttachmentResponseParentCreatedBy): |
| 134 | + return False |
| 135 | + |
| 136 | + return self.__dict__ == other.__dict__ |
| 137 | + |
| 138 | + def __ne__(self, other): |
| 139 | + """Returns true if both objects are not equal""" |
| 140 | + return not self == other |
0 commit comments