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 / AlipayAssetPointBalanceQueryResponse.py
Size: Mime:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json

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


class AlipayAssetPointBalanceQueryResponse(AlipayResponse):

    def __init__(self):
        super(AlipayAssetPointBalanceQueryResponse, self).__init__()
        self._point_amount = None

    @property
    def point_amount(self):
        return self._point_amount

    @point_amount.setter
    def point_amount(self, value):
        self._point_amount = value

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