123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class Road(object):
- def __init__(self):
- self._direction = None
- self._distance = None
- self._id = None
- self._location = None
- self._name = None
- @property
- def direction(self):
- return self._direction
- @direction.setter
- def direction(self, value):
- self._direction = value
- @property
- def distance(self):
- return self._distance
- @distance.setter
- def distance(self, value):
- self._distance = value
- @property
- def id(self):
- return self._id
- @id.setter
- def id(self, value):
- self._id = value
- @property
- def location(self):
- return self._location
- @location.setter
- def location(self, value):
- self._location = value
- @property
- def name(self):
- return self._name
- @name.setter
- def name(self, value):
- self._name = value
- def to_alipay_dict(self):
- params = dict()
- if self.direction:
- if hasattr(self.direction, 'to_alipay_dict'):
- params['direction'] = self.direction.to_alipay_dict()
- else:
- params['direction'] = self.direction
- if self.distance:
- if hasattr(self.distance, 'to_alipay_dict'):
- params['distance'] = self.distance.to_alipay_dict()
- else:
- params['distance'] = self.distance
- if self.id:
- if hasattr(self.id, 'to_alipay_dict'):
- params['id'] = self.id.to_alipay_dict()
- else:
- params['id'] = self.id
- if self.location:
- if hasattr(self.location, 'to_alipay_dict'):
- params['location'] = self.location.to_alipay_dict()
- else:
- params['location'] = self.location
- if self.name:
- if hasattr(self.name, 'to_alipay_dict'):
- params['name'] = self.name.to_alipay_dict()
- else:
- params['name'] = self.name
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = Road()
- if 'direction' in d:
- o.direction = d['direction']
- if 'distance' in d:
- o.distance = d['distance']
- if 'id' in d:
- o.id = d['id']
- if 'location' in d:
- o.location = d['location']
- if 'name' in d:
- o.name = d['name']
- return o
|