From 55334206054c3293a61990c9ef962b2e8486e5c7 Mon Sep 17 00:00:00 2001 From: fastjrun Date: Fri, 8 Nov 2024 09:02:39 +0800 Subject: [PATCH] =?UTF-8?q?Batch=20=E9=83=A8=E5=88=86=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E7=94=B1Integer=E6=94=B9=E4=B8=BALong=EF=BC=8C=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E5=85=BC=E5=AE=B9=E6=99=BA=E8=B0=B1=E6=B8=85=E8=A8=80?= =?UTF-8?q?=E7=9A=84=E6=89=B9=E5=A4=84=E7=90=86=E8=BF=94=E5=9B=9E=E5=AF=B9?= =?UTF-8?q?=E8=B1=A1=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/theokanning/openai/batch/Batch.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/api/src/main/java/com/theokanning/openai/batch/Batch.java b/api/src/main/java/com/theokanning/openai/batch/Batch.java index 421bf0f..5535d53 100644 --- a/api/src/main/java/com/theokanning/openai/batch/Batch.java +++ b/api/src/main/java/com/theokanning/openai/batch/Batch.java @@ -65,55 +65,55 @@ public class Batch { * The Unix timestamp (in seconds) for when the batch was created. */ @JsonProperty("created_at") - Integer createdAt; + Long createdAt; /** * The Unix timestamp (in seconds) for when the batch started processing. */ @JsonProperty("in_progress_at") - Integer inProgressAt; + Long inProgressAt; /** * The Unix timestamp (in seconds) for when the batch will expire. */ @JsonProperty("expires_at") - Integer expiresAt; + Long expiresAt; /** * The Unix timestamp (in seconds) for when the batch started finalizing. */ @JsonProperty("finalizing_at") - Integer finalizingAt; + Long finalizingAt; /** * The Unix timestamp (in seconds) for when the batch was completed. */ @JsonProperty("completed_at") - Integer completedAt; + Long completedAt; /** * The Unix timestamp (in seconds) for when the batch failed. */ @JsonProperty("failed_at") - Integer failedAt; + Long failedAt; /** * The Unix timestamp (in seconds) for when the batch expired. */ @JsonProperty("expired_at") - Integer expiredAt; + Long expiredAt; /** * The Unix timestamp (in seconds) for when the batch started cancelling. */ @JsonProperty("cancelling_at") - Integer cancellingAt; + Long cancellingAt; /** * The Unix timestamp (in seconds) for when the batch was cancelled. */ @JsonProperty("cancelled_at") - Integer cancelledAt; + Long cancelledAt; /** * The request counts for different statuses within the batch.