Source code for worldline.connect.sdk.v1.domain.refund_e_wallet_method_specific_output

# -*- 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.v1.domain.refund_method_specific_output import RefundMethodSpecificOutput
from worldline.connect.sdk.v1.domain.refund_payment_product840_specific_output import RefundPaymentProduct840SpecificOutput


[docs] class RefundEWalletMethodSpecificOutput(RefundMethodSpecificOutput): __payment_product840_specific_output: Optional[RefundPaymentProduct840SpecificOutput] = None @property def payment_product840_specific_output(self) -> Optional[RefundPaymentProduct840SpecificOutput]: """ | PayPal (payment product 840) specific details Type: :class:`worldline.connect.sdk.v1.domain.refund_payment_product840_specific_output.RefundPaymentProduct840SpecificOutput` """ return self.__payment_product840_specific_output @payment_product840_specific_output.setter def payment_product840_specific_output(self, value: Optional[RefundPaymentProduct840SpecificOutput]) -> None: self.__payment_product840_specific_output = value
[docs] def to_dictionary(self) -> dict: dictionary = super(RefundEWalletMethodSpecificOutput, self).to_dictionary() if self.payment_product840_specific_output is not None: dictionary['paymentProduct840SpecificOutput'] = self.payment_product840_specific_output.to_dictionary() return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'RefundEWalletMethodSpecificOutput': super(RefundEWalletMethodSpecificOutput, self).from_dictionary(dictionary) if 'paymentProduct840SpecificOutput' in dictionary: if not isinstance(dictionary['paymentProduct840SpecificOutput'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['paymentProduct840SpecificOutput'])) value = RefundPaymentProduct840SpecificOutput() self.payment_product840_specific_output = value.from_dictionary(dictionary['paymentProduct840SpecificOutput']) return self