Source code for worldline.connect.sdk.v1.domain.create_payment_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.v1.domain.create_payment_result import CreatePaymentResult
[docs]
class CreatePaymentResponse(CreatePaymentResult):
[docs]
def to_dictionary(self) -> dict:
dictionary = super(CreatePaymentResponse, self).to_dictionary()
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'CreatePaymentResponse':
super(CreatePaymentResponse, self).from_dictionary(dictionary)
return self