Source code for worldline.connect.sdk.v1.domain.refunds_response
# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from typing import List, Optional
from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.refund_result import RefundResult
[docs]
class RefundsResponse(DataObject):
__refunds: Optional[List[RefundResult]] = None
@property
def refunds(self) -> Optional[List[RefundResult]]:
"""
| The list of all refunds performed on the requested payment.
Type: list[:class:`worldline.connect.sdk.v1.domain.refund_result.RefundResult`]
"""
return self.__refunds
@refunds.setter
def refunds(self, value: Optional[List[RefundResult]]) -> None:
self.__refunds = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(RefundsResponse, self).to_dictionary()
if self.refunds is not None:
dictionary['refunds'] = []
for element in self.refunds:
if element is not None:
dictionary['refunds'].append(element.to_dictionary())
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'RefundsResponse':
super(RefundsResponse, self).from_dictionary(dictionary)
if 'refunds' in dictionary:
if not isinstance(dictionary['refunds'], list):
raise TypeError('value \'{}\' is not a list'.format(dictionary['refunds']))
self.refunds = []
for element in dictionary['refunds']:
value = RefundResult()
self.refunds.append(value.from_dictionary(element))
return self