Source code for worldline.connect.sdk.v1.domain.capture_payment_request
# -*- 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
[docs]class CapturePaymentRequest(DataObject):
__amount = None
__is_final = None
@property
def amount(self):
"""
| Here you can specify the amount that you want to capture (specified in cents, where single digit currencies are presumed to have 2 digits).
| The amount can be lower than the amount that was authorized, but not higher.
| If left empty, the full amount will be captured and the request will be final.
| If the full amount is captured, the request will also be final.
Type: long
"""
return self.__amount
@amount.setter
def amount(self, value):
self.__amount = value
@property
def is_final(self):
"""
| This property indicates whether this will be the final capture of this transaction.
| The default value for this property is false.
Type: bool
"""
return self.__is_final
@is_final.setter
def is_final(self, value):
self.__is_final = value
[docs] def to_dictionary(self):
dictionary = super(CapturePaymentRequest, self).to_dictionary()
if self.amount is not None:
dictionary['amount'] = self.amount
if self.is_final is not None:
dictionary['isFinal'] = self.is_final
return dictionary
[docs] def from_dictionary(self, dictionary):
super(CapturePaymentRequest, self).from_dictionary(dictionary)
if 'amount' in dictionary:
self.amount = dictionary['amount']
if 'isFinal' in dictionary:
self.is_final = dictionary['isFinal']
return self