Source code for worldline.connect.sdk.v1.domain.captures_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.capture import Capture
[docs]
class CapturesResponse(DataObject):
__captures: Optional[List[Capture]] = None
@property
def captures(self) -> Optional[List[Capture]]:
"""
| The list of all captures performed on the requested payment.
Type: list[:class:`worldline.connect.sdk.v1.domain.capture.Capture`]
"""
return self.__captures
@captures.setter
def captures(self, value: Optional[List[Capture]]) -> None:
self.__captures = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(CapturesResponse, self).to_dictionary()
if self.captures is not None:
dictionary['captures'] = []
for element in self.captures:
if element is not None:
dictionary['captures'].append(element.to_dictionary())
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'CapturesResponse':
super(CapturesResponse, self).from_dictionary(dictionary)
if 'captures' in dictionary:
if not isinstance(dictionary['captures'], list):
raise TypeError('value \'{}\' is not a list'.format(dictionary['captures']))
self.captures = []
for element in dictionary['captures']:
value = Capture()
self.captures.append(value.from_dictionary(element))
return self