File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
api/src/main/java/com/theokanning/openai/batch Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -65,55 +65,55 @@ public class Batch {
65
65
* The Unix timestamp (in seconds) for when the batch was created.
66
66
*/
67
67
@ JsonProperty ("created_at" )
68
- Integer createdAt ;
68
+ Long createdAt ;
69
69
70
70
/**
71
71
* The Unix timestamp (in seconds) for when the batch started processing.
72
72
*/
73
73
@ JsonProperty ("in_progress_at" )
74
- Integer inProgressAt ;
74
+ Long inProgressAt ;
75
75
76
76
/**
77
77
* The Unix timestamp (in seconds) for when the batch will expire.
78
78
*/
79
79
@ JsonProperty ("expires_at" )
80
- Integer expiresAt ;
80
+ Long expiresAt ;
81
81
82
82
/**
83
83
* The Unix timestamp (in seconds) for when the batch started finalizing.
84
84
*/
85
85
@ JsonProperty ("finalizing_at" )
86
- Integer finalizingAt ;
86
+ Long finalizingAt ;
87
87
88
88
/**
89
89
* The Unix timestamp (in seconds) for when the batch was completed.
90
90
*/
91
91
@ JsonProperty ("completed_at" )
92
- Integer completedAt ;
92
+ Long completedAt ;
93
93
94
94
/**
95
95
* The Unix timestamp (in seconds) for when the batch failed.
96
96
*/
97
97
@ JsonProperty ("failed_at" )
98
- Integer failedAt ;
98
+ Long failedAt ;
99
99
100
100
/**
101
101
* The Unix timestamp (in seconds) for when the batch expired.
102
102
*/
103
103
@ JsonProperty ("expired_at" )
104
- Integer expiredAt ;
104
+ Long expiredAt ;
105
105
106
106
/**
107
107
* The Unix timestamp (in seconds) for when the batch started cancelling.
108
108
*/
109
109
@ JsonProperty ("cancelling_at" )
110
- Integer cancellingAt ;
110
+ Long cancellingAt ;
111
111
112
112
/**
113
113
* The Unix timestamp (in seconds) for when the batch was cancelled.
114
114
*/
115
115
@ JsonProperty ("cancelled_at" )
116
- Integer cancelledAt ;
116
+ Long cancelledAt ;
117
117
118
118
/**
119
119
* The request counts for different statuses within the batch.
You can’t perform that action at this time.
0 commit comments