Source code for worldline.connect.sdk.v1.domain.authentication_indicator

# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from worldline.connect.sdk.v1.domain.abstract_indicator import AbstractIndicator


[docs] class AuthenticationIndicator(AbstractIndicator): """ | Indicates if the payment product supports 3D Security (mandatory, optional or not needed). """
[docs] def to_dictionary(self) -> dict: dictionary = super(AuthenticationIndicator, self).to_dictionary() return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'AuthenticationIndicator': super(AuthenticationIndicator, self).from_dictionary(dictionary) return self