Source code for worldline.connect.sdk.v1.domain.get_mandate_response
# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from typing import Optional
from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.mandate_response import MandateResponse
[docs]
class GetMandateResponse(DataObject):
__mandate: Optional[MandateResponse] = None
@property
def mandate(self) -> Optional[MandateResponse]:
"""
| Object containing information on a mandate.
Type: :class:`worldline.connect.sdk.v1.domain.mandate_response.MandateResponse`
"""
return self.__mandate
@mandate.setter
def mandate(self, value: Optional[MandateResponse]) -> None:
self.__mandate = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(GetMandateResponse, self).to_dictionary()
if self.mandate is not None:
dictionary['mandate'] = self.mandate.to_dictionary()
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'GetMandateResponse':
super(GetMandateResponse, self).from_dictionary(dictionary)
if 'mandate' in dictionary:
if not isinstance(dictionary['mandate'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['mandate']))
value = MandateResponse()
self.mandate = value.from_dictionary(dictionary['mandate'])
return self