Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
alipay-sdk-python / alipay / aop / api / response / AlipayCommerceLotteryPresentSendResponse.py
Size: Mime:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json

from alipay.aop.api.response.AlipayResponse import AlipayResponse


class AlipayCommerceLotteryPresentSendResponse(AlipayResponse):

    def __init__(self):
        super(AlipayCommerceLotteryPresentSendResponse, self).__init__()
        self._send_result = None

    @property
    def send_result(self):
        return self._send_result

    @send_result.setter
    def send_result(self, value):
        self._send_result = value

    def parse_response_content(self, response_content):
        response = super(AlipayCommerceLotteryPresentSendResponse, self).parse_response_content(response_content)
        if 'send_result' in response:
            self.send_result = response['send_result']