1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- from alipay.aop.api.domain.Article import Article
- from alipay.aop.api.domain.Text import Text
- class Material(object):
- def __init__(self):
- self._articles = None
- self._msg_type = None
- self._text = None
- @property
- def articles(self):
- return self._articles
- @articles.setter
- def articles(self, value):
- if isinstance(value, list):
- self._articles = list()
- for i in value:
- if isinstance(i, Article):
- self._articles.append(i)
- else:
- self._articles.append(Article.from_alipay_dict(i))
- @property
- def msg_type(self):
- return self._msg_type
- @msg_type.setter
- def msg_type(self, value):
- self._msg_type = value
- @property
- def text(self):
- return self._text
- @text.setter
- def text(self, value):
- if isinstance(value, Text):
- self._text = value
- else:
- self._text = Text.from_alipay_dict(value)
- def to_alipay_dict(self):
- params = dict()
- if self.articles:
- if isinstance(self.articles, list):
- for i in range(0, len(self.articles)):
- element = self.articles[i]
- if hasattr(element, 'to_alipay_dict'):
- self.articles[i] = element.to_alipay_dict()
- if hasattr(self.articles, 'to_alipay_dict'):
- params['articles'] = self.articles.to_alipay_dict()
- else:
- params['articles'] = self.articles
- if self.msg_type:
- if hasattr(self.msg_type, 'to_alipay_dict'):
- params['msg_type'] = self.msg_type.to_alipay_dict()
- else:
- params['msg_type'] = self.msg_type
- if self.text:
- if hasattr(self.text, 'to_alipay_dict'):
- params['text'] = self.text.to_alipay_dict()
- else:
- params['text'] = self.text
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = Material()
- if 'articles' in d:
- o.articles = d['articles']
- if 'msg_type' in d:
- o.msg_type = d['msg_type']
- if 'text' in d:
- o.text = d['text']
- return o
|