123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayFundAuthOperationCancelModel(object):
- def __init__(self):
- self._auth_no = None
- self._operation_id = None
- self._out_order_no = None
- self._out_request_no = None
- self._remark = None
- @property
- def auth_no(self):
- return self._auth_no
- @auth_no.setter
- def auth_no(self, value):
- self._auth_no = value
- @property
- def operation_id(self):
- return self._operation_id
- @operation_id.setter
- def operation_id(self, value):
- self._operation_id = value
- @property
- def out_order_no(self):
- return self._out_order_no
- @out_order_no.setter
- def out_order_no(self, value):
- self._out_order_no = value
- @property
- def out_request_no(self):
- return self._out_request_no
- @out_request_no.setter
- def out_request_no(self, value):
- self._out_request_no = value
- @property
- def remark(self):
- return self._remark
- @remark.setter
- def remark(self, value):
- self._remark = value
- def to_alipay_dict(self):
- params = dict()
- if self.auth_no:
- if hasattr(self.auth_no, 'to_alipay_dict'):
- params['auth_no'] = self.auth_no.to_alipay_dict()
- else:
- params['auth_no'] = self.auth_no
- if self.operation_id:
- if hasattr(self.operation_id, 'to_alipay_dict'):
- params['operation_id'] = self.operation_id.to_alipay_dict()
- else:
- params['operation_id'] = self.operation_id
- if self.out_order_no:
- if hasattr(self.out_order_no, 'to_alipay_dict'):
- params['out_order_no'] = self.out_order_no.to_alipay_dict()
- else:
- params['out_order_no'] = self.out_order_no
- if self.out_request_no:
- if hasattr(self.out_request_no, 'to_alipay_dict'):
- params['out_request_no'] = self.out_request_no.to_alipay_dict()
- else:
- params['out_request_no'] = self.out_request_no
- if self.remark:
- if hasattr(self.remark, 'to_alipay_dict'):
- params['remark'] = self.remark.to_alipay_dict()
- else:
- params['remark'] = self.remark
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayFundAuthOperationCancelModel()
- if 'auth_no' in d:
- o.auth_no = d['auth_no']
- if 'operation_id' in d:
- o.operation_id = d['operation_id']
- if 'out_order_no' in d:
- o.out_order_no = d['out_order_no']
- if 'out_request_no' in d:
- o.out_request_no = d['out_request_no']
- if 'remark' in d:
- o.remark = d['remark']
- return o
|