1
1
"""
2
- The version of the XENDIT API: 1.8.7
2
+ The version of the XENDIT API: 1.8.8
3
3
"""
4
4
5
5
@@ -80,7 +80,7 @@ def openapi_types():
80
80
"""
81
81
return {
82
82
'issuer' : (str , none_type ), # noqa: E501
83
- 'allowed_terms ' : ([float ], none_type ), # noqa: E501
83
+ 'terms ' : ([float ], none_type ), # noqa: E501
84
84
}
85
85
86
86
@cached_property
@@ -90,7 +90,7 @@ def discriminator():
90
90
91
91
attribute_map = {
92
92
'issuer' : 'issuer' , # noqa: E501
93
- 'allowed_terms ' : 'allowed_terms ' , # noqa: E501
93
+ 'terms ' : 'terms ' , # noqa: E501
94
94
}
95
95
96
96
read_only_vars = {
@@ -135,7 +135,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
135
135
through its discriminator because we passed in
136
136
_visited_composed_classes = (Animal,)
137
137
issuer (str): The bank code of the installment provider / issuer. [optional] # noqa: E501
138
- allowed_terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
138
+ terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
139
139
"""
140
140
141
141
_check_type = kwargs .pop ('_check_type' , True )
@@ -191,7 +191,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
191
191
@convert_js_args_to_python_args
192
192
def __init__ (self ,
193
193
issuer : str | None = None ,
194
- allowed_terms : list | None = None ,
194
+ terms : list | None = None ,
195
195
* args , ** kwargs
196
196
): # noqa: E501
197
197
"""ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner - a model defined in OpenAPI
@@ -229,7 +229,7 @@ def __init__(self,
229
229
through its discriminator because we passed in
230
230
_visited_composed_classes = (Animal,)
231
231
issuer (str): The bank code of the installment provider / issuer. [optional] # noqa: E501
232
- allowed_terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
232
+ terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
233
233
"""
234
234
235
235
_check_type = kwargs .pop ('_check_type' , True )
@@ -263,8 +263,8 @@ def __init__(self,
263
263
264
264
if issuer is not None :
265
265
self .issuer = issuer
266
- if allowed_terms is not None :
267
- self .allowed_terms = allowed_terms
266
+ if terms is not None :
267
+ self .terms = terms
268
268
for var_name , var_value in kwargs .items ():
269
269
if var_name not in self .attribute_map and \
270
270
self ._configuration is not None and \
0 commit comments