@@ -80,7 +80,7 @@ def openapi_types():
80
80
"""
81
81
return {
82
82
'id' : (str ,), # noqa: E501
83
- 'payment_request_id ' : (str ,), # noqa: E501
83
+ 'payment_id ' : (str ,), # noqa: E501
84
84
'payment_method_type' : (str ,), # noqa: E501
85
85
'amount' : (float ,), # noqa: E501
86
86
'channel_code' : (str ,), # noqa: E501
@@ -104,7 +104,7 @@ def discriminator():
104
104
105
105
attribute_map = {
106
106
'id' : 'id' , # noqa: E501
107
- 'payment_request_id ' : 'payment_request_id ' , # noqa: E501
107
+ 'payment_id ' : 'payment_id ' , # noqa: E501
108
108
'payment_method_type' : 'payment_method_type' , # noqa: E501
109
109
'amount' : 'amount' , # noqa: E501
110
110
'channel_code' : 'channel_code' , # noqa: E501
@@ -128,12 +128,12 @@ def discriminator():
128
128
129
129
@classmethod
130
130
@convert_js_args_to_python_args
131
- def _from_openapi_data (cls , id , payment_request_id , payment_method_type , amount , channel_code , status , reason , country , currency , created , updated , * args , ** kwargs ): # noqa: E501
131
+ def _from_openapi_data (cls , id , payment_id , payment_method_type , amount , channel_code , status , reason , country , currency , created , updated , * args , ** kwargs ): # noqa: E501
132
132
"""RefundCallbackData - a model defined in OpenAPI
133
133
134
134
Args:
135
135
id (str):
136
- payment_request_id (str):
136
+ payment_id (str):
137
137
payment_method_type (str):
138
138
amount (float):
139
139
channel_code (str):
@@ -214,7 +214,7 @@ def _from_openapi_data(cls, id, payment_request_id, payment_method_type, amount,
214
214
self ._visited_composed_classes = _visited_composed_classes + (self .__class__ ,)
215
215
216
216
self .id = id
217
- self .payment_request_id = payment_request_id
217
+ self .payment_id = payment_id
218
218
self .payment_method_type = payment_method_type
219
219
self .amount = amount
220
220
self .channel_code = channel_code
@@ -246,7 +246,7 @@ def _from_openapi_data(cls, id, payment_request_id, payment_method_type, amount,
246
246
@convert_js_args_to_python_args
247
247
def __init__ (self ,
248
248
id : str ,
249
- payment_request_id : str ,
249
+ payment_id : str ,
250
250
payment_method_type : str ,
251
251
amount : float ,
252
252
channel_code : str ,
@@ -267,7 +267,7 @@ def __init__(self,
267
267
268
268
Args:
269
269
id (str):
270
- payment_request_id (str):
270
+ payment_id (str):
271
271
payment_method_type (str):
272
272
amount (float):
273
273
channel_code (str):
@@ -347,7 +347,7 @@ def __init__(self,
347
347
self ._visited_composed_classes = _visited_composed_classes + (self .__class__ ,)
348
348
349
349
self .id = id
350
- self .payment_request_id = payment_request_id
350
+ self .payment_id = payment_id
351
351
self .payment_method_type = payment_method_type
352
352
self .amount = amount
353
353
self .channel_code = channel_code
0 commit comments