Source code for worldline.connect.sdk.v1.domain.find_payments_response
# -*- 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.payment import Payment
[docs]class FindPaymentsResponse(DataObject):
__limit = None
__offset = None
__payments = None
__total_count = None
@property
def limit(self):
"""
| The limit you used in the request.
Type: int
"""
return self.__limit
@limit.setter
def limit(self, value):
self.__limit = value
@property
def offset(self):
"""
| The offset you used in the request.
Type: int
"""
return self.__offset
@offset.setter
def offset(self, value):
self.__offset = value
@property
def payments(self):
"""
| A list of payments that matched your filter, starting at the given offset and limited to the given limit.
Type: list[:class:`worldline.connect.sdk.v1.domain.payment.Payment`]
"""
return self.__payments
@payments.setter
def payments(self, value):
self.__payments = value
@property
def total_count(self):
"""
| The total number of payments that matched your filter.
Type: int
"""
return self.__total_count
@total_count.setter
def total_count(self, value):
self.__total_count = value
[docs] def to_dictionary(self):
dictionary = super(FindPaymentsResponse, self).to_dictionary()
if self.limit is not None:
dictionary['limit'] = self.limit
if self.offset is not None:
dictionary['offset'] = self.offset
if self.payments is not None:
dictionary['payments'] = []
for element in self.payments:
if element is not None:
dictionary['payments'].append(element.to_dictionary())
if self.total_count is not None:
dictionary['totalCount'] = self.total_count
return dictionary
[docs] def from_dictionary(self, dictionary):
super(FindPaymentsResponse, self).from_dictionary(dictionary)
if 'limit' in dictionary:
self.limit = dictionary['limit']
if 'offset' in dictionary:
self.offset = dictionary['offset']
if 'payments' in dictionary:
if not isinstance(dictionary['payments'], list):
raise TypeError('value \'{}\' is not a list'.format(dictionary['payments']))
self.payments = []
for element in dictionary['payments']:
value = Payment()
self.payments.append(value.from_dictionary(element))
if 'totalCount' in dictionary:
self.total_count = dictionary['totalCount']
return self