Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
class AlipayUserPointAuthbaseSendResponse(AlipayResponse):
def __init__(self):
super(AlipayUserPointAuthbaseSendResponse, self).__init__()
self._send_point = None
@property
def send_point(self):
return self._send_point
@send_point.setter
def send_point(self, value):
self._send_point = value
def parse_response_content(self, response_content):
response = super(AlipayUserPointAuthbaseSendResponse, self).parse_response_content(response_content)
if 'send_point' in response:
self.send_point = response['send_point']