1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- class AlipayIserviceMindvJobCreateResponse(AlipayResponse):
- def __init__(self):
- super(AlipayIserviceMindvJobCreateResponse, self).__init__()
- self._gmt_create = None
- self._id = None
- self._job_domain = None
- self._status = None
- self._title = None
- @property
- def gmt_create(self):
- return self._gmt_create
- @gmt_create.setter
- def gmt_create(self, value):
- self._gmt_create = value
- @property
- def id(self):
- return self._id
- @id.setter
- def id(self, value):
- self._id = value
- @property
- def job_domain(self):
- return self._job_domain
- @job_domain.setter
- def job_domain(self, value):
- self._job_domain = value
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._status = value
- @property
- def title(self):
- return self._title
- @title.setter
- def title(self, value):
- self._title = value
- def parse_response_content(self, response_content):
- response = super(AlipayIserviceMindvJobCreateResponse, self).parse_response_content(response_content)
- if 'gmt_create' in response:
- self.gmt_create = response['gmt_create']
- if 'id' in response:
- self.id = response['id']
- if 'job_domain' in response:
- self.job_domain = response['job_domain']
- if 'status' in response:
- self.status = response['status']
- if 'title' in response:
- self.title = response['title']
|