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

# -*- 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


[docs] class OrderReferencesApprovePayment(DataObject): __merchant_reference: Optional[str] = None @property def merchant_reference(self) -> Optional[str]: """ | Your (unique) reference for the transaction that you can use to reconcile our report files Type: str """ return self.__merchant_reference @merchant_reference.setter def merchant_reference(self, value: Optional[str]) -> None: self.__merchant_reference = value
[docs] def to_dictionary(self) -> dict: dictionary = super(OrderReferencesApprovePayment, self).to_dictionary() if self.merchant_reference is not None: dictionary['merchantReference'] = self.merchant_reference return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'OrderReferencesApprovePayment': super(OrderReferencesApprovePayment, self).from_dictionary(dictionary) if 'merchantReference' in dictionary: self.merchant_reference = dictionary['merchantReference'] return self