Source code for worldline.connect.sdk.v1.domain.order_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
from worldline.connect.sdk.v1.domain.additional_order_input_airline_data import AdditionalOrderInputAirlineData
from worldline.connect.sdk.v1.domain.customer_approve_payment import CustomerApprovePayment
from worldline.connect.sdk.v1.domain.order_references_approve_payment import OrderReferencesApprovePayment
[docs]
class OrderApprovePayment(DataObject):
__additional_input: Optional[AdditionalOrderInputAirlineData] = None
__customer: Optional[CustomerApprovePayment] = None
__references: Optional[OrderReferencesApprovePayment] = None
@property
def additional_input(self) -> Optional[AdditionalOrderInputAirlineData]:
"""
| Object containing additional input on the order
Type: :class:`worldline.connect.sdk.v1.domain.additional_order_input_airline_data.AdditionalOrderInputAirlineData`
"""
return self.__additional_input
@additional_input.setter
def additional_input(self, value: Optional[AdditionalOrderInputAirlineData]) -> None:
self.__additional_input = value
@property
def customer(self) -> Optional[CustomerApprovePayment]:
"""
| Object containing data related to the customer
Type: :class:`worldline.connect.sdk.v1.domain.customer_approve_payment.CustomerApprovePayment`
"""
return self.__customer
@customer.setter
def customer(self, value: Optional[CustomerApprovePayment]) -> None:
self.__customer = value
@property
def references(self) -> Optional[OrderReferencesApprovePayment]:
"""
| Object that holds all reference properties that are linked to this transaction
Type: :class:`worldline.connect.sdk.v1.domain.order_references_approve_payment.OrderReferencesApprovePayment`
"""
return self.__references
@references.setter
def references(self, value: Optional[OrderReferencesApprovePayment]) -> None:
self.__references = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(OrderApprovePayment, self).to_dictionary()
if self.additional_input is not None:
dictionary['additionalInput'] = self.additional_input.to_dictionary()
if self.customer is not None:
dictionary['customer'] = self.customer.to_dictionary()
if self.references is not None:
dictionary['references'] = self.references.to_dictionary()
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'OrderApprovePayment':
super(OrderApprovePayment, self).from_dictionary(dictionary)
if 'additionalInput' in dictionary:
if not isinstance(dictionary['additionalInput'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['additionalInput']))
value = AdditionalOrderInputAirlineData()
self.additional_input = value.from_dictionary(dictionary['additionalInput'])
if 'customer' in dictionary:
if not isinstance(dictionary['customer'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['customer']))
value = CustomerApprovePayment()
self.customer = value.from_dictionary(dictionary['customer'])
if 'references' in dictionary:
if not isinstance(dictionary['references'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['references']))
value = OrderReferencesApprovePayment()
self.references = value.from_dictionary(dictionary['references'])
return self