Source code for worldline.acquiring.sdk.v1.domain.api_account_verification_request

# -*- coding: utf-8 -*-
#
# This file was automatically generated.
#
from datetime import datetime
from typing import Optional

from .card_payment_data_for_verification import CardPaymentDataForVerification
from .merchant_data import MerchantData
from .payment_references import PaymentReferences

from worldline.acquiring.sdk.domain.data_object import DataObject


[docs] class ApiAccountVerificationRequest(DataObject): __card_payment_data: Optional[CardPaymentDataForVerification] = None __merchant: Optional[MerchantData] = None __operation_id: Optional[str] = None __references: Optional[PaymentReferences] = None __transaction_timestamp: Optional[datetime] = None @property def card_payment_data(self) -> Optional[CardPaymentDataForVerification]: """ | Card data Type: :class:`worldline.acquiring.sdk.v1.domain.card_payment_data_for_verification.CardPaymentDataForVerification` """ return self.__card_payment_data @card_payment_data.setter def card_payment_data(self, value: Optional[CardPaymentDataForVerification]) -> None: self.__card_payment_data = value @property def merchant(self) -> Optional[MerchantData]: """ | Merchant Data Type: :class:`worldline.acquiring.sdk.v1.domain.merchant_data.MerchantData` """ return self.__merchant @merchant.setter def merchant(self, value: Optional[MerchantData]) -> None: self.__merchant = value @property def operation_id(self) -> Optional[str]: """ | A globally unique identifier of the operation, generated by you. | We advise you to submit a UUID or an identifier composed of an arbitrary string and a UUID/URL-safe Base64 UUID (RFC 4648 ยง5). | It's used to detect duplicate requests or to reference an operation in technical reversals. Type: str """ return self.__operation_id @operation_id.setter def operation_id(self, value: Optional[str]) -> None: self.__operation_id = value @property def references(self) -> Optional[PaymentReferences]: """ | Payment References Type: :class:`worldline.acquiring.sdk.v1.domain.payment_references.PaymentReferences` """ return self.__references @references.setter def references(self, value: Optional[PaymentReferences]) -> None: self.__references = value @property def transaction_timestamp(self) -> Optional[datetime]: """ | Timestamp of transaction in ISO 8601 format (YYYY-MM-DDThh:mm:ss+TZD) | It can be expressed in merchant time zone (ex: 2023-10-10T08:00+02:00) or in UTC (ex: 2023-10-10T08:00Z) Type: datetime """ return self.__transaction_timestamp @transaction_timestamp.setter def transaction_timestamp(self, value: Optional[datetime]) -> None: self.__transaction_timestamp = value
[docs] def to_dictionary(self) -> dict: dictionary = super(ApiAccountVerificationRequest, self).to_dictionary() if self.card_payment_data is not None: dictionary['cardPaymentData'] = self.card_payment_data.to_dictionary() if self.merchant is not None: dictionary['merchant'] = self.merchant.to_dictionary() if self.operation_id is not None: dictionary['operationId'] = self.operation_id if self.references is not None: dictionary['references'] = self.references.to_dictionary() if self.transaction_timestamp is not None: dictionary['transactionTimestamp'] = DataObject.format_datetime(self.transaction_timestamp) return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'ApiAccountVerificationRequest': super(ApiAccountVerificationRequest, self).from_dictionary(dictionary) if 'cardPaymentData' in dictionary: if not isinstance(dictionary['cardPaymentData'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['cardPaymentData'])) value = CardPaymentDataForVerification() self.card_payment_data = value.from_dictionary(dictionary['cardPaymentData']) if 'merchant' in dictionary: if not isinstance(dictionary['merchant'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['merchant'])) value = MerchantData() self.merchant = value.from_dictionary(dictionary['merchant']) if 'operationId' in dictionary: self.operation_id = dictionary['operationId'] if 'references' in dictionary: if not isinstance(dictionary['references'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['references'])) value = PaymentReferences() self.references = value.from_dictionary(dictionary['references']) if 'transactionTimestamp' in dictionary: self.transaction_timestamp = DataObject.parse_datetime(dictionary['transactionTimestamp']) return self