Source code for worldline.connect.sdk.v1.domain.cancel_approval_payment_response
# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.payment import Payment
[docs]class CancelApprovalPaymentResponse(DataObject):
__payment = None
@property
def payment(self):
"""
| Object that holds the payment related properties
Type: :class:`worldline.connect.sdk.v1.domain.payment.Payment`
"""
return self.__payment
@payment.setter
def payment(self, value):
self.__payment = value
[docs] def to_dictionary(self):
dictionary = super(CancelApprovalPaymentResponse, self).to_dictionary()
if self.payment is not None:
dictionary['payment'] = self.payment.to_dictionary()
return dictionary
[docs] def from_dictionary(self, dictionary):
super(CancelApprovalPaymentResponse, self).from_dictionary(dictionary)
if 'payment' in dictionary:
if not isinstance(dictionary['payment'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['payment']))
value = Payment()
self.payment = value.from_dictionary(dictionary['payment'])
return self