|
@ -64,8 +64,9 @@ class GatewayEvent(six.with_metaclass(GatewayEventMeta, Model)): |
|
|
return cls(obj, client) |
|
|
return cls(obj, client) |
|
|
|
|
|
|
|
|
def __getattr__(self, name): |
|
|
def __getattr__(self, name): |
|
|
if hasattr(self, '_proxy'): |
|
|
_proxy = object.__getattr__(self, '_proxy', None) |
|
|
return getattr(getattr(self, self._proxy), name) |
|
|
if _proxy: |
|
|
|
|
|
return getattr(_proxy, name) |
|
|
return object.__getattribute__(self, name) |
|
|
return object.__getattribute__(self, name) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|