Source code for worldline.connect.sdk.v1.domain.order
# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.additional_order_input import AdditionalOrderInput
from worldline.connect.sdk.v1.domain.amount_of_money import AmountOfMoney
from worldline.connect.sdk.v1.domain.customer import Customer
from worldline.connect.sdk.v1.domain.line_item import LineItem
from worldline.connect.sdk.v1.domain.order_references import OrderReferences
from worldline.connect.sdk.v1.domain.seller import Seller
from worldline.connect.sdk.v1.domain.shipping import Shipping
from worldline.connect.sdk.v1.domain.shopping_cart import ShoppingCart
[docs]class Order(DataObject):
__additional_input = None
__amount_of_money = None
__customer = None
__items = None
__references = None
__seller = None
__shipping = None
__shopping_cart = None
@property
def additional_input(self):
"""
| Object containing additional input on the order
Type: :class:`worldline.connect.sdk.v1.domain.additional_order_input.AdditionalOrderInput`
"""
return self.__additional_input
@additional_input.setter
def additional_input(self, value):
self.__additional_input = value
@property
def amount_of_money(self):
"""
| Object containing amount and ISO currency code attributes
Type: :class:`worldline.connect.sdk.v1.domain.amount_of_money.AmountOfMoney`
"""
return self.__amount_of_money
@amount_of_money.setter
def amount_of_money(self, value):
self.__amount_of_money = value
@property
def customer(self):
"""
| Object containing the details of the customer
Type: :class:`worldline.connect.sdk.v1.domain.customer.Customer`
"""
return self.__customer
@customer.setter
def customer(self, value):
self.__customer = value
@property
def items(self):
"""
| Shopping cart data
Type: list[:class:`worldline.connect.sdk.v1.domain.line_item.LineItem`]
Deprecated; Use shoppingCart.items instead
"""
return self.__items
@items.setter
def items(self, value):
self.__items = value
@property
def references(self):
"""
| Object that holds all reference properties that are linked to this transaction
Type: :class:`worldline.connect.sdk.v1.domain.order_references.OrderReferences`
"""
return self.__references
@references.setter
def references(self, value):
self.__references = value
@property
def seller(self):
"""
| Object containing seller details
Type: :class:`worldline.connect.sdk.v1.domain.seller.Seller`
Deprecated; Use Merchant.seller instead
"""
return self.__seller
@seller.setter
def seller(self, value):
self.__seller = value
@property
def shipping(self):
"""
| Object containing information regarding shipping / delivery
Type: :class:`worldline.connect.sdk.v1.domain.shipping.Shipping`
"""
return self.__shipping
@shipping.setter
def shipping(self, value):
self.__shipping = value
@property
def shopping_cart(self):
"""
| Shopping cart data, including items and specific amounts.
Type: :class:`worldline.connect.sdk.v1.domain.shopping_cart.ShoppingCart`
"""
return self.__shopping_cart
@shopping_cart.setter
def shopping_cart(self, value):
self.__shopping_cart = value
[docs] def to_dictionary(self):
dictionary = super(Order, self).to_dictionary()
if self.additional_input is not None:
dictionary['additionalInput'] = self.additional_input.to_dictionary()
if self.amount_of_money is not None:
dictionary['amountOfMoney'] = self.amount_of_money.to_dictionary()
if self.customer is not None:
dictionary['customer'] = self.customer.to_dictionary()
if self.items is not None:
dictionary['items'] = []
for element in self.items:
if element is not None:
dictionary['items'].append(element.to_dictionary())
if self.references is not None:
dictionary['references'] = self.references.to_dictionary()
if self.seller is not None:
dictionary['seller'] = self.seller.to_dictionary()
if self.shipping is not None:
dictionary['shipping'] = self.shipping.to_dictionary()
if self.shopping_cart is not None:
dictionary['shoppingCart'] = self.shopping_cart.to_dictionary()
return dictionary
[docs] def from_dictionary(self, dictionary):
super(Order, 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 = AdditionalOrderInput()
self.additional_input = value.from_dictionary(dictionary['additionalInput'])
if 'amountOfMoney' in dictionary:
if not isinstance(dictionary['amountOfMoney'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['amountOfMoney']))
value = AmountOfMoney()
self.amount_of_money = value.from_dictionary(dictionary['amountOfMoney'])
if 'customer' in dictionary:
if not isinstance(dictionary['customer'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['customer']))
value = Customer()
self.customer = value.from_dictionary(dictionary['customer'])
if 'items' in dictionary:
if not isinstance(dictionary['items'], list):
raise TypeError('value \'{}\' is not a list'.format(dictionary['items']))
self.items = []
for element in dictionary['items']:
value = LineItem()
self.items.append(value.from_dictionary(element))
if 'references' in dictionary:
if not isinstance(dictionary['references'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['references']))
value = OrderReferences()
self.references = value.from_dictionary(dictionary['references'])
if 'seller' in dictionary:
if not isinstance(dictionary['seller'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['seller']))
value = Seller()
self.seller = value.from_dictionary(dictionary['seller'])
if 'shipping' in dictionary:
if not isinstance(dictionary['shipping'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['shipping']))
value = Shipping()
self.shipping = value.from_dictionary(dictionary['shipping'])
if 'shoppingCart' in dictionary:
if not isinstance(dictionary['shoppingCart'], dict):
raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['shoppingCart']))
value = ShoppingCart()
self.shopping_cart = value.from_dictionary(dictionary['shoppingCart'])
return self