Skip to content

Commit

Permalink
Fix SMS Date
Browse files Browse the repository at this point in the history
  • Loading branch information
NeftaliYagua committed Aug 30, 2023
1 parent 9e7c2a2 commit fe9772c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/Model/ListofSMSresponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ class ListofSMSresponse implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerTypes = [
'submit_date' => 'string',
'delivery_date' => 'string',
'expiry_date' => 'string',
'final_date' => 'string',
'retry_date' => 'string',
'submit_date' => '\DateTime',
'delivery_date' => '\DateTime',
'expiry_date' => '\DateTime',
'final_date' => '\DateTime',
'retry_date' => '\DateTime',
'last_delivery_attempt' => 'string',
'retry_count' => 'string',
'gsm_map_error' => 'string',
Expand All @@ -87,11 +87,11 @@ class ListofSMSresponse implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerFormats = [
'submit_date' => null,
'delivery_date' => null,
'expiry_date' => null,
'final_date' => null,
'retry_date' => null,
'submit_date' => 'date-time',
'delivery_date' => 'date-time',
'expiry_date' => 'date-time',
'final_date' => 'date-time',
'retry_date' => 'date-time',
'last_delivery_attempt' => null,
'retry_count' => null,
'gsm_map_error' => null,
Expand Down

0 comments on commit fe9772c

Please sign in to comment.