@@ -98,7 +98,7 @@ def openapi_types():
9898 'amount' : (float ,), # noqa: E501
9999 'payer_email' : (str , none_type ), # noqa: E501
100100 'description' : (str , none_type ), # noqa: E501
101- 'invoice_duration' : (str , none_type ), # noqa: E501
101+ 'invoice_duration' : (float , none_type ), # noqa: E501
102102 'callback_virtual_account_id' : (str , none_type ), # noqa: E501
103103 'should_send_email' : (bool , none_type ), # noqa: E501
104104 'customer' : (CustomerObject , none_type ), # noqa: E501
@@ -195,7 +195,7 @@ def _from_openapi_data(cls, external_id, amount, *args, **kwargs): # noqa: E501
195195 _visited_composed_classes = (Animal,)
196196 payer_email (str): The email address of the payer.. [optional] # noqa: E501
197197 description (str): A description of the payment.. [optional] # noqa: E501
198- invoice_duration (str ): The duration of the invoice.. [optional] # noqa: E501
198+ invoice_duration (float ): The duration of the invoice in seconds .. [optional] # noqa: E501
199199 callback_virtual_account_id (str): The ID of the callback virtual account.. [optional] # noqa: E501
200200 should_send_email (bool): Indicates whether email notifications should be sent.. [optional] # noqa: E501
201201 customer (CustomerObject): [optional] # noqa: E501
@@ -273,7 +273,7 @@ def __init__(self,
273273 amount : float ,
274274 payer_email : str | None = None ,
275275 description : str | None = None ,
276- invoice_duration : str | None = None ,
276+ invoice_duration : float | None = None ,
277277 callback_virtual_account_id : str | None = None ,
278278 should_send_email : bool | None = None ,
279279 customer : CustomerObject | None = None ,
@@ -333,7 +333,7 @@ def __init__(self,
333333 _visited_composed_classes = (Animal,)
334334 payer_email (str): The email address of the payer.. [optional] # noqa: E501
335335 description (str): A description of the payment.. [optional] # noqa: E501
336- invoice_duration (str ): The duration of the invoice.. [optional] # noqa: E501
336+ invoice_duration (float ): The duration of the invoice in seconds .. [optional] # noqa: E501
337337 callback_virtual_account_id (str): The ID of the callback virtual account.. [optional] # noqa: E501
338338 should_send_email (bool): Indicates whether email notifications should be sent.. [optional] # noqa: E501
339339 customer (CustomerObject): [optional] # noqa: E501
0 commit comments