diff --git a/.sdk-version b/.sdk-version index 6110fbd..b3e49df 100644 --- a/.sdk-version +++ b/.sdk-version @@ -1 +1 @@ -v1.98.0 +v1.98.1 diff --git a/README.md b/README.md index 9f9c102..d515886 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add this dependency to your project's POM: ai.reveng sdk - 1.98.0 + 1.98.1 compile ``` @@ -31,7 +31,7 @@ repositories { } dependencies { - implementation "ai.reveng:sdk:1.98.0" + implementation "ai.reveng:sdk:1.98.1" } ``` diff --git a/build.gradle b/build.gradle index da4e855..5fa5efb 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'ai.reveng' -version = '1.98.0' +version = '1.98.1' @@ -171,7 +171,7 @@ mavenPublishing { publishToMavenCentral(true) signAllPublications() - coordinates("ai.reveng", "sdk", "1.98.0") + coordinates("ai.reveng", "sdk", "1.98.1") pom { name = "sdk" diff --git a/build.sbt b/build.sbt index 6d1b851..d438911 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "ai.reveng", name := "sdk", - version := "1.98.0", + version := "1.98.1", scalaVersion := "2.11.12", scalacOptions ++= Seq("-feature"), compile / javacOptions ++= Seq("-Xlint:deprecation"), diff --git a/docs/AnalysisRecord.md b/docs/AnalysisRecord.md index c9ff609..e4fc5c3 100644 --- a/docs/AnalysisRecord.md +++ b/docs/AnalysisRecord.md @@ -13,7 +13,7 @@ |**modelId** | **Integer** | ID to identify the model used for analysis | | |**modelName** | **String** | Name of the model used for analysis | | |**status** | **String** | The current status of analysis | | -|**creation** | **java.time.Instant** | The current status of analysis | | +|**creation** | **OffsetDateTime** | The current status of analysis | | |**isOwner** | **Boolean** | Whether the current user is the owner of a binary | | |**binaryName** | **String** | The name of the file uploaded | | |**sha256Hash** | **String** | The hash of the binary | | diff --git a/docs/Basic.md b/docs/Basic.md index 3391480..bc48866 100644 --- a/docs/Basic.md +++ b/docs/Basic.md @@ -9,7 +9,7 @@ |------------ | ------------- | ------------- | -------------| |**binaryName** | **String** | The name of the binary uploaded | | |**binarySize** | **Integer** | The size of the binary uploaded (bytes) | | -|**creation** | **java.time.Instant** | When the binary was uploaded | | +|**creation** | **OffsetDateTime** | When the binary was uploaded | | |**sha256Hash** | **String** | The hash of the binary uploaded | | |**modelName** | **String** | The model name used for analysis | | |**ownerUsername** | **String** | The name of the owner of the binary | | diff --git a/docs/BinaryAdditionalResponse.md b/docs/BinaryAdditionalResponse.md index a6065ba..ab8e5ef 100644 --- a/docs/BinaryAdditionalResponse.md +++ b/docs/BinaryAdditionalResponse.md @@ -9,7 +9,7 @@ |------------ | ------------- | ------------- | -------------| |**binaryId** | **Integer** | | | |**details** | [**BinaryAdditionalDetailsDataResponse**](BinaryAdditionalDetailsDataResponse.md) | | | -|**creation** | **java.time.Instant** | | [optional] | +|**creation** | **OffsetDateTime** | | [optional] | diff --git a/docs/BinaryDetailsResponse.md b/docs/BinaryDetailsResponse.md index 1697ac2..5f3efbd 100644 --- a/docs/BinaryDetailsResponse.md +++ b/docs/BinaryDetailsResponse.md @@ -26,7 +26,7 @@ |**tlsh** | **String** | | | |**type** | **String** | | | |**debug** | **Boolean** | | | -|**firstSeen** | **java.time.Instant** | | | +|**firstSeen** | **OffsetDateTime** | | | diff --git a/docs/BinaryExternalsResponse.md b/docs/BinaryExternalsResponse.md index bab6f18..b158ad1 100644 --- a/docs/BinaryExternalsResponse.md +++ b/docs/BinaryExternalsResponse.md @@ -9,9 +9,9 @@ |------------ | ------------- | ------------- | -------------| |**sha256Hash** | **String** | SHA256 hash of the binary | | |**vt** | **Map<String, Object>** | VirusTotal information | | -|**vtLastUpdated** | **java.time.Instant** | VirusTotal last updated date | | +|**vtLastUpdated** | **OffsetDateTime** | VirusTotal last updated date | | |**mb** | **Map<String, Object>** | MalwareBazaar information | | -|**mbLastUpdated** | **java.time.Instant** | MalwareBazaar last updated date | | +|**mbLastUpdated** | **OffsetDateTime** | MalwareBazaar last updated date | | diff --git a/docs/BinarySearchResult.md b/docs/BinarySearchResult.md index d4194d5..2770092 100644 --- a/docs/BinarySearchResult.md +++ b/docs/BinarySearchResult.md @@ -12,7 +12,7 @@ |**analysisId** | **Integer** | The analysis ID | | |**sha256Hash** | **String** | The SHA-256 hash of the binary | | |**tags** | **List<String>** | | | -|**createdAt** | **java.time.Instant** | The creation date of the binary | | +|**createdAt** | **OffsetDateTime** | The creation date of the binary | | |**modelId** | **Integer** | The model ID of the binary | | |**modelName** | **String** | The name of the model | | |**ownedBy** | **String** | The owner of the binary | | diff --git a/docs/CollectionBinaryResponse.md b/docs/CollectionBinaryResponse.md index 7667a4e..3293ef0 100644 --- a/docs/CollectionBinaryResponse.md +++ b/docs/CollectionBinaryResponse.md @@ -12,7 +12,7 @@ |**binaryName** | **String** | Binary name | | |**ownerId** | **Integer** | Binary owner | | |**sha256Hash** | **String** | Binary SHA-256 hash | | -|**createdAt** | **java.time.Instant** | Binary creation date | | +|**createdAt** | **OffsetDateTime** | Binary creation date | | diff --git a/docs/CollectionListItem.md b/docs/CollectionListItem.md index b31d36a..ea39d06 100644 --- a/docs/CollectionListItem.md +++ b/docs/CollectionListItem.md @@ -15,7 +15,7 @@ |**collectionTags** | **List<String>** | The tags of the collection | [optional] | |**collectionSize** | **Integer** | The size of the collection | | |**collectionId** | **Integer** | The ID of the collection | | -|**creation** | **java.time.Instant** | The current status of analysis | | +|**creation** | **OffsetDateTime** | The current status of analysis | | |**modelName** | **String** | The model being used for the collection | | |**teamId** | **Integer** | | [optional] | diff --git a/docs/CollectionResponse.md b/docs/CollectionResponse.md index ec4eb04..c87011e 100644 --- a/docs/CollectionResponse.md +++ b/docs/CollectionResponse.md @@ -14,8 +14,8 @@ |**userId** | **Integer** | Collection user ID | | |**teamId** | **Integer** | | [optional] | |**collectionScope** | **CollectionScope** | Collection public status | | -|**createdAt** | **java.time.Instant** | Collection creation date | | -|**updatedAt** | **java.time.Instant** | Collection last update date | | +|**createdAt** | **OffsetDateTime** | Collection creation date | | +|**updatedAt** | **OffsetDateTime** | Collection last update date | | |**tags** | **List<String>** | | [optional] | |**binaries** | [**List<CollectionResponseBinariesInner>**](CollectionResponseBinariesInner.md) | | [optional] | diff --git a/docs/CollectionResponseBinariesInner.md b/docs/CollectionResponseBinariesInner.md index c34741c..7978bba 100644 --- a/docs/CollectionResponseBinariesInner.md +++ b/docs/CollectionResponseBinariesInner.md @@ -12,7 +12,7 @@ |**binaryName** | **String** | Binary name | | |**ownerId** | **Integer** | Binary owner | | |**sha256Hash** | **String** | Binary SHA-256 hash | | -|**createdAt** | **java.time.Instant** | Binary creation date | | +|**createdAt** | **OffsetDateTime** | Binary creation date | | diff --git a/docs/CollectionSearchResult.md b/docs/CollectionSearchResult.md index 2648ebc..67e3310 100644 --- a/docs/CollectionSearchResult.md +++ b/docs/CollectionSearchResult.md @@ -10,8 +10,8 @@ |**collectionId** | **Integer** | The ID of the collection | | |**collectionName** | **String** | The name of the collection | | |**scope** | **String** | The scope of the collection | | -|**lastUpdatedAt** | **java.time.Instant** | The last update date of the collection | | -|**createdAt** | **java.time.Instant** | The creation date of the collection | | +|**lastUpdatedAt** | **OffsetDateTime** | The last update date of the collection | | +|**createdAt** | **OffsetDateTime** | The creation date of the collection | | |**modelId** | **Integer** | The model ID of the binary | | |**modelName** | **String** | The name of the model | | |**ownedBy** | **String** | The owner of the collection | | diff --git a/docs/CommentResponse.md b/docs/CommentResponse.md index d9fff6c..8f3b957 100644 --- a/docs/CommentResponse.md +++ b/docs/CommentResponse.md @@ -13,8 +13,8 @@ |**resourceType** | **String** | | | |**resourceId** | **String** | | | |**context** | [**Context**](Context.md) | | [optional] | -|**createdAt** | **java.time.Instant** | | | -|**updatedAt** | **java.time.Instant** | | | +|**createdAt** | **OffsetDateTime** | | | +|**updatedAt** | **OffsetDateTime** | | | diff --git a/docs/ExternalResponse.md b/docs/ExternalResponse.md index 65f4b03..9b65c9b 100644 --- a/docs/ExternalResponse.md +++ b/docs/ExternalResponse.md @@ -9,7 +9,7 @@ |------------ | ------------- | ------------- | -------------| |**sha256Hash** | **String** | | | |**data** | **Map<String, Object>** | | | -|**lastUpdated** | **java.time.Instant** | | | +|**lastUpdated** | **OffsetDateTime** | | | diff --git a/docs/FunctionSearchResult.md b/docs/FunctionSearchResult.md index 6349e6f..a1578fb 100644 --- a/docs/FunctionSearchResult.md +++ b/docs/FunctionSearchResult.md @@ -10,7 +10,7 @@ |**functionId** | **Integer** | The function ID | | |**functionName** | **String** | The name of the function | | |**binaryName** | **String** | The name of the binary the function belongs to | | -|**createdAt** | **java.time.Instant** | The creation date of the function | | +|**createdAt** | **OffsetDateTime** | The creation date of the function | | |**modelId** | **Integer** | The model ID used to analyze the binary the function belongs to | | |**modelName** | **String** | The name of the model used to analyze the binary the function belongs to | | |**ownedBy** | **String** | The owner of the binary the function belongs to | | diff --git a/docs/GetUserResponse.md b/docs/GetUserResponse.md index 5c79096..a129185 100644 --- a/docs/GetUserResponse.md +++ b/docs/GetUserResponse.md @@ -12,7 +12,7 @@ |**firstName** | **String** | | | |**lastName** | **String** | | | |**email** | **String** | | | -|**creation** | **java.time.Instant** | | | +|**creation** | **OffsetDateTime** | | | |**tutorialSeen** | **Boolean** | | | diff --git a/docs/UserActivityResponse.md b/docs/UserActivityResponse.md index d61a705..6520d5d 100644 --- a/docs/UserActivityResponse.md +++ b/docs/UserActivityResponse.md @@ -9,7 +9,7 @@ |------------ | ------------- | ------------- | -------------| |**actions** | **String** | | | |**activityScope** | **String** | | | -|**creation** | **java.time.Instant** | | | +|**creation** | **OffsetDateTime** | | | |**message** | **String** | | | |**sources** | **String** | | | |**username** | **String** | | | diff --git a/pom.xml b/pom.xml index 5a2b9a2..b15c517 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ sdk jar sdk - 1.98.0 + 1.98.1 https://github.com/RevEngAI/sdk-java Java SDK for the RevEng.AI API diff --git a/src/main/java/ai/reveng/invoker/ApiClient.java b/src/main/java/ai/reveng/invoker/ApiClient.java index e09bdf4..d4a7787 100644 --- a/src/main/java/ai/reveng/invoker/ApiClient.java +++ b/src/main/java/ai/reveng/invoker/ApiClient.java @@ -140,7 +140,7 @@ protected void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/1.98.0/java"); + setUserAgent("OpenAPI-Generator/1.98.1/java"); authentications = new HashMap(); } diff --git a/src/main/java/ai/reveng/invoker/Configuration.java b/src/main/java/ai/reveng/invoker/Configuration.java index fe1fc8d..fe631ae 100644 --- a/src/main/java/ai/reveng/invoker/Configuration.java +++ b/src/main/java/ai/reveng/invoker/Configuration.java @@ -18,7 +18,7 @@ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Configuration { - public static final String VERSION = "1.98.0"; + public static final String VERSION = "1.98.1"; private static final AtomicReference defaultApiClient = new AtomicReference<>(); private static volatile Supplier apiClientFactory = ApiClient::new; diff --git a/src/main/java/ai/reveng/invoker/JSON.java b/src/main/java/ai/reveng/invoker/JSON.java index d407ef9..74896c0 100644 --- a/src/main/java/ai/reveng/invoker/JSON.java +++ b/src/main/java/ai/reveng/invoker/JSON.java @@ -36,7 +36,10 @@ import java.text.ParsePosition; import java.time.LocalDate; import java.time.OffsetDateTime; +import java.time.LocalDateTime; +import java.time.ZoneOffset; import java.time.format.DateTimeFormatter; +import java.time.format.DateTimeParseException; import java.util.Date; import java.util.Locale; import java.util.Map; @@ -530,10 +533,29 @@ public OffsetDateTime read(JsonReader in) throws IOException { return null; default: String date = in.nextString(); - if (date.endsWith("+0000")) { - date = date.substring(0, date.length()-5) + "Z"; + + // If date has no offset, treat it as UTC + if (!date.endsWith("Z") && !date.matches(".*[+-]\\d{2}:?\\d{2}$")) { + // Ensure nanosecond fraction is up to 9 digits + int dotIndex = date.indexOf('.'); + if (dotIndex != -1) { + String fraction = date.substring(dotIndex + 1); + if (fraction.length() > 9) fraction = fraction.substring(0, 9); + else if (fraction.length() < 9) fraction = String.format("%-9s", fraction).replace(' ', '0'); + date = date.substring(0, dotIndex + 1) + fraction; + } + // Append Z for UTC + date = date + "Z"; + } + + // Parse using OffsetDateTime + try { + return OffsetDateTime.parse(date, DateTimeFormatter.ISO_OFFSET_DATE_TIME); + } catch (DateTimeParseException ex) { + // Fallback: parse as LocalDateTime and convert to UTC + LocalDateTime ldt = LocalDateTime.parse(date, DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss[.SSSSSSSSS]")); + return ldt.atOffset(ZoneOffset.UTC); } - return OffsetDateTime.parse(date, formatter); } } } diff --git a/src/main/java/ai/reveng/model/AnalysisRecord.java b/src/main/java/ai/reveng/model/AnalysisRecord.java index de65122..29ae260 100644 --- a/src/main/java/ai/reveng/model/AnalysisRecord.java +++ b/src/main/java/ai/reveng/model/AnalysisRecord.java @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; @@ -86,7 +87,7 @@ public class AnalysisRecord { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nonnull - private java.time.Instant creation; + private OffsetDateTime creation; public static final String SERIALIZED_NAME_IS_OWNER = "is_owner"; @SerializedName(SERIALIZED_NAME_IS_OWNER) @@ -250,7 +251,7 @@ public void setStatus(@javax.annotation.Nonnull String status) { } - public AnalysisRecord creation(@javax.annotation.Nonnull java.time.Instant creation) { + public AnalysisRecord creation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; return this; } @@ -260,11 +261,11 @@ public AnalysisRecord creation(@javax.annotation.Nonnull java.time.Instant creat * @return creation */ @javax.annotation.Nonnull - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nonnull java.time.Instant creation) { + public void setCreation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; } diff --git a/src/main/java/ai/reveng/model/Basic.java b/src/main/java/ai/reveng/model/Basic.java index 55a94c6..300d767 100644 --- a/src/main/java/ai/reveng/model/Basic.java +++ b/src/main/java/ai/reveng/model/Basic.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -64,7 +65,7 @@ public class Basic { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nonnull - private java.time.Instant creation; + private OffsetDateTime creation; public static final String SERIALIZED_NAME_SHA256_HASH = "sha_256_hash"; @SerializedName(SERIALIZED_NAME_SHA256_HASH) @@ -152,7 +153,7 @@ public void setBinarySize(@javax.annotation.Nonnull Integer binarySize) { } - public Basic creation(@javax.annotation.Nonnull java.time.Instant creation) { + public Basic creation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; return this; } @@ -162,11 +163,11 @@ public Basic creation(@javax.annotation.Nonnull java.time.Instant creation) { * @return creation */ @javax.annotation.Nonnull - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nonnull java.time.Instant creation) { + public void setCreation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; } diff --git a/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java b/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java index 28d55e9..6c8e64d 100644 --- a/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java +++ b/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; @@ -66,7 +67,7 @@ public class BinaryAdditionalResponse { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nullable - private java.time.Instant creation; + private OffsetDateTime creation; public BinaryAdditionalResponse() { } @@ -109,7 +110,7 @@ public void setDetails(@javax.annotation.Nullable BinaryAdditionalDetailsDataRes } - public BinaryAdditionalResponse creation(@javax.annotation.Nullable java.time.Instant creation) { + public BinaryAdditionalResponse creation(@javax.annotation.Nullable OffsetDateTime creation) { this.creation = creation; return this; } @@ -119,11 +120,11 @@ public BinaryAdditionalResponse creation(@javax.annotation.Nullable java.time.In * @return creation */ @javax.annotation.Nullable - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nullable java.time.Instant creation) { + public void setCreation(@javax.annotation.Nullable OffsetDateTime creation) { this.creation = creation; } diff --git a/src/main/java/ai/reveng/model/BinaryDetailsResponse.java b/src/main/java/ai/reveng/model/BinaryDetailsResponse.java index 62c2f6e..198d65a 100644 --- a/src/main/java/ai/reveng/model/BinaryDetailsResponse.java +++ b/src/main/java/ai/reveng/model/BinaryDetailsResponse.java @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonWriter; import java.io.IOException; import java.math.BigDecimal; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -150,7 +151,7 @@ public class BinaryDetailsResponse { public static final String SERIALIZED_NAME_FIRST_SEEN = "first_seen"; @SerializedName(SERIALIZED_NAME_FIRST_SEEN) @javax.annotation.Nonnull - private java.time.Instant firstSeen; + private OffsetDateTime firstSeen; public BinaryDetailsResponse() { } @@ -516,7 +517,7 @@ public void setDebug(@javax.annotation.Nonnull Boolean debug) { } - public BinaryDetailsResponse firstSeen(@javax.annotation.Nonnull java.time.Instant firstSeen) { + public BinaryDetailsResponse firstSeen(@javax.annotation.Nonnull OffsetDateTime firstSeen) { this.firstSeen = firstSeen; return this; } @@ -526,11 +527,11 @@ public BinaryDetailsResponse firstSeen(@javax.annotation.Nonnull java.time.Insta * @return firstSeen */ @javax.annotation.Nonnull - public java.time.Instant getFirstSeen() { + public OffsetDateTime getFirstSeen() { return firstSeen; } - public void setFirstSeen(@javax.annotation.Nonnull java.time.Instant firstSeen) { + public void setFirstSeen(@javax.annotation.Nonnull OffsetDateTime firstSeen) { this.firstSeen = firstSeen; } diff --git a/src/main/java/ai/reveng/model/BinaryExternalsResponse.java b/src/main/java/ai/reveng/model/BinaryExternalsResponse.java index b438d28..26d698c 100644 --- a/src/main/java/ai/reveng/model/BinaryExternalsResponse.java +++ b/src/main/java/ai/reveng/model/BinaryExternalsResponse.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import java.util.HashMap; import java.util.Map; @@ -66,7 +67,7 @@ public class BinaryExternalsResponse { public static final String SERIALIZED_NAME_VT_LAST_UPDATED = "vt_last_updated"; @SerializedName(SERIALIZED_NAME_VT_LAST_UPDATED) @javax.annotation.Nonnull - private java.time.Instant vtLastUpdated; + private OffsetDateTime vtLastUpdated; public static final String SERIALIZED_NAME_MB = "mb"; @SerializedName(SERIALIZED_NAME_MB) @@ -76,7 +77,7 @@ public class BinaryExternalsResponse { public static final String SERIALIZED_NAME_MB_LAST_UPDATED = "mb_last_updated"; @SerializedName(SERIALIZED_NAME_MB_LAST_UPDATED) @javax.annotation.Nonnull - private java.time.Instant mbLastUpdated; + private OffsetDateTime mbLastUpdated; public BinaryExternalsResponse() { } @@ -127,7 +128,7 @@ public void setVt(@javax.annotation.Nonnull Map vt) { } - public BinaryExternalsResponse vtLastUpdated(@javax.annotation.Nonnull java.time.Instant vtLastUpdated) { + public BinaryExternalsResponse vtLastUpdated(@javax.annotation.Nonnull OffsetDateTime vtLastUpdated) { this.vtLastUpdated = vtLastUpdated; return this; } @@ -137,11 +138,11 @@ public BinaryExternalsResponse vtLastUpdated(@javax.annotation.Nonnull java.time * @return vtLastUpdated */ @javax.annotation.Nonnull - public java.time.Instant getVtLastUpdated() { + public OffsetDateTime getVtLastUpdated() { return vtLastUpdated; } - public void setVtLastUpdated(@javax.annotation.Nonnull java.time.Instant vtLastUpdated) { + public void setVtLastUpdated(@javax.annotation.Nonnull OffsetDateTime vtLastUpdated) { this.vtLastUpdated = vtLastUpdated; } @@ -173,7 +174,7 @@ public void setMb(@javax.annotation.Nonnull Map mb) { } - public BinaryExternalsResponse mbLastUpdated(@javax.annotation.Nonnull java.time.Instant mbLastUpdated) { + public BinaryExternalsResponse mbLastUpdated(@javax.annotation.Nonnull OffsetDateTime mbLastUpdated) { this.mbLastUpdated = mbLastUpdated; return this; } @@ -183,11 +184,11 @@ public BinaryExternalsResponse mbLastUpdated(@javax.annotation.Nonnull java.time * @return mbLastUpdated */ @javax.annotation.Nonnull - public java.time.Instant getMbLastUpdated() { + public OffsetDateTime getMbLastUpdated() { return mbLastUpdated; } - public void setMbLastUpdated(@javax.annotation.Nonnull java.time.Instant mbLastUpdated) { + public void setMbLastUpdated(@javax.annotation.Nonnull OffsetDateTime mbLastUpdated) { this.mbLastUpdated = mbLastUpdated; } diff --git a/src/main/java/ai/reveng/model/BinarySearchResult.java b/src/main/java/ai/reveng/model/BinarySearchResult.java index 4b5588d..c1bc1fb 100644 --- a/src/main/java/ai/reveng/model/BinarySearchResult.java +++ b/src/main/java/ai/reveng/model/BinarySearchResult.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -81,7 +82,7 @@ public class BinarySearchResult { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_MODEL_ID = "model_id"; @SerializedName(SERIALIZED_NAME_MODEL_ID) @@ -204,7 +205,7 @@ public void setTags(@javax.annotation.Nullable List tags) { } - public BinarySearchResult createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public BinarySearchResult createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -214,11 +215,11 @@ public BinarySearchResult createdAt(@javax.annotation.Nonnull java.time.Instant * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } diff --git a/src/main/java/ai/reveng/model/CollectionBinaryResponse.java b/src/main/java/ai/reveng/model/CollectionBinaryResponse.java index e33b319..5bc3963 100644 --- a/src/main/java/ai/reveng/model/CollectionBinaryResponse.java +++ b/src/main/java/ai/reveng/model/CollectionBinaryResponse.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -79,7 +80,7 @@ public class CollectionBinaryResponse { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public CollectionBinaryResponse() { } @@ -179,7 +180,7 @@ public void setSha256Hash(@javax.annotation.Nonnull String sha256Hash) { } - public CollectionBinaryResponse createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public CollectionBinaryResponse createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -189,11 +190,11 @@ public CollectionBinaryResponse createdAt(@javax.annotation.Nonnull java.time.In * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } diff --git a/src/main/java/ai/reveng/model/CollectionListItem.java b/src/main/java/ai/reveng/model/CollectionListItem.java index 2833d7d..2a7b528 100644 --- a/src/main/java/ai/reveng/model/CollectionListItem.java +++ b/src/main/java/ai/reveng/model/CollectionListItem.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -97,7 +98,7 @@ public class CollectionListItem { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nonnull - private java.time.Instant creation; + private OffsetDateTime creation; public static final String SERIALIZED_NAME_MODEL_NAME = "model_name"; @SerializedName(SERIALIZED_NAME_MODEL_NAME) @@ -272,7 +273,7 @@ public void setCollectionId(@javax.annotation.Nonnull Integer collectionId) { } - public CollectionListItem creation(@javax.annotation.Nonnull java.time.Instant creation) { + public CollectionListItem creation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; return this; } @@ -282,11 +283,11 @@ public CollectionListItem creation(@javax.annotation.Nonnull java.time.Instant c * @return creation */ @javax.annotation.Nonnull - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nonnull java.time.Instant creation) { + public void setCreation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; } diff --git a/src/main/java/ai/reveng/model/CollectionResponse.java b/src/main/java/ai/reveng/model/CollectionResponse.java index 2822d57..f3582bd 100644 --- a/src/main/java/ai/reveng/model/CollectionResponse.java +++ b/src/main/java/ai/reveng/model/CollectionResponse.java @@ -22,6 +22,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -94,12 +95,12 @@ public class CollectionResponse { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) @javax.annotation.Nonnull - private java.time.Instant updatedAt; + private OffsetDateTime updatedAt; public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) @@ -247,7 +248,7 @@ public void setCollectionScope(@javax.annotation.Nonnull CollectionScope collect } - public CollectionResponse createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public CollectionResponse createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -257,16 +258,16 @@ public CollectionResponse createdAt(@javax.annotation.Nonnull java.time.Instant * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } - public CollectionResponse updatedAt(@javax.annotation.Nonnull java.time.Instant updatedAt) { + public CollectionResponse updatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } @@ -276,11 +277,11 @@ public CollectionResponse updatedAt(@javax.annotation.Nonnull java.time.Instant * @return updatedAt */ @javax.annotation.Nonnull - public java.time.Instant getUpdatedAt() { + public OffsetDateTime getUpdatedAt() { return updatedAt; } - public void setUpdatedAt(@javax.annotation.Nonnull java.time.Instant updatedAt) { + public void setUpdatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } diff --git a/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java b/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java index 6716d52..7b5b0a0 100644 --- a/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java +++ b/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; diff --git a/src/main/java/ai/reveng/model/CollectionSearchResult.java b/src/main/java/ai/reveng/model/CollectionSearchResult.java index 237411f..4596d77 100644 --- a/src/main/java/ai/reveng/model/CollectionSearchResult.java +++ b/src/main/java/ai/reveng/model/CollectionSearchResult.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -72,12 +73,12 @@ public class CollectionSearchResult { public static final String SERIALIZED_NAME_LAST_UPDATED_AT = "last_updated_at"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED_AT) @javax.annotation.Nonnull - private java.time.Instant lastUpdatedAt; + private OffsetDateTime lastUpdatedAt; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_MODEL_ID = "model_id"; @SerializedName(SERIALIZED_NAME_MODEL_ID) @@ -174,7 +175,7 @@ public void setScope(@javax.annotation.Nonnull String scope) { } - public CollectionSearchResult lastUpdatedAt(@javax.annotation.Nonnull java.time.Instant lastUpdatedAt) { + public CollectionSearchResult lastUpdatedAt(@javax.annotation.Nonnull OffsetDateTime lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; return this; } @@ -184,16 +185,16 @@ public CollectionSearchResult lastUpdatedAt(@javax.annotation.Nonnull java.time. * @return lastUpdatedAt */ @javax.annotation.Nonnull - public java.time.Instant getLastUpdatedAt() { + public OffsetDateTime getLastUpdatedAt() { return lastUpdatedAt; } - public void setLastUpdatedAt(@javax.annotation.Nonnull java.time.Instant lastUpdatedAt) { + public void setLastUpdatedAt(@javax.annotation.Nonnull OffsetDateTime lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } - public CollectionSearchResult createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public CollectionSearchResult createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -203,11 +204,11 @@ public CollectionSearchResult createdAt(@javax.annotation.Nonnull java.time.Inst * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } diff --git a/src/main/java/ai/reveng/model/CommentResponse.java b/src/main/java/ai/reveng/model/CommentResponse.java index b7f19dc..857c9bc 100644 --- a/src/main/java/ai/reveng/model/CommentResponse.java +++ b/src/main/java/ai/reveng/model/CommentResponse.java @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; @@ -86,12 +87,12 @@ public class CommentResponse { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) @javax.annotation.Nonnull - private java.time.Instant updatedAt; + private OffsetDateTime updatedAt; public CommentResponse() { } @@ -210,7 +211,7 @@ public void setContext(@javax.annotation.Nullable Context context) { } - public CommentResponse createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public CommentResponse createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -220,16 +221,16 @@ public CommentResponse createdAt(@javax.annotation.Nonnull java.time.Instant cre * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } - public CommentResponse updatedAt(@javax.annotation.Nonnull java.time.Instant updatedAt) { + public CommentResponse updatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } @@ -239,11 +240,11 @@ public CommentResponse updatedAt(@javax.annotation.Nonnull java.time.Instant upd * @return updatedAt */ @javax.annotation.Nonnull - public java.time.Instant getUpdatedAt() { + public OffsetDateTime getUpdatedAt() { return updatedAt; } - public void setUpdatedAt(@javax.annotation.Nonnull java.time.Instant updatedAt) { + public void setUpdatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } diff --git a/src/main/java/ai/reveng/model/ExternalResponse.java b/src/main/java/ai/reveng/model/ExternalResponse.java index 4edc45b..fe6f8f9 100644 --- a/src/main/java/ai/reveng/model/ExternalResponse.java +++ b/src/main/java/ai/reveng/model/ExternalResponse.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import java.util.HashMap; import java.util.Map; @@ -66,7 +67,7 @@ public class ExternalResponse { public static final String SERIALIZED_NAME_LAST_UPDATED = "last_updated"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED) @javax.annotation.Nonnull - private java.time.Instant lastUpdated; + private OffsetDateTime lastUpdated; public ExternalResponse() { } @@ -117,7 +118,7 @@ public void setData(@javax.annotation.Nonnull Map data) { } - public ExternalResponse lastUpdated(@javax.annotation.Nonnull java.time.Instant lastUpdated) { + public ExternalResponse lastUpdated(@javax.annotation.Nonnull OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; return this; } @@ -127,11 +128,11 @@ public ExternalResponse lastUpdated(@javax.annotation.Nonnull java.time.Instant * @return lastUpdated */ @javax.annotation.Nonnull - public java.time.Instant getLastUpdated() { + public OffsetDateTime getLastUpdated() { return lastUpdated; } - public void setLastUpdated(@javax.annotation.Nonnull java.time.Instant lastUpdated) { + public void setLastUpdated(@javax.annotation.Nonnull OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; } diff --git a/src/main/java/ai/reveng/model/FunctionSearchResult.java b/src/main/java/ai/reveng/model/FunctionSearchResult.java index ee5a7bc..2c0be52 100644 --- a/src/main/java/ai/reveng/model/FunctionSearchResult.java +++ b/src/main/java/ai/reveng/model/FunctionSearchResult.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -69,7 +70,7 @@ public class FunctionSearchResult { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @javax.annotation.Nonnull - private java.time.Instant createdAt; + private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_MODEL_ID = "model_id"; @SerializedName(SERIALIZED_NAME_MODEL_ID) @@ -146,7 +147,7 @@ public void setBinaryName(@javax.annotation.Nonnull String binaryName) { } - public FunctionSearchResult createdAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public FunctionSearchResult createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } @@ -156,11 +157,11 @@ public FunctionSearchResult createdAt(@javax.annotation.Nonnull java.time.Instan * @return createdAt */ @javax.annotation.Nonnull - public java.time.Instant getCreatedAt() { + public OffsetDateTime getCreatedAt() { return createdAt; } - public void setCreatedAt(@javax.annotation.Nonnull java.time.Instant createdAt) { + public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) { this.createdAt = createdAt; } diff --git a/src/main/java/ai/reveng/model/GetUserResponse.java b/src/main/java/ai/reveng/model/GetUserResponse.java index d3c61eb..284eb20 100644 --- a/src/main/java/ai/reveng/model/GetUserResponse.java +++ b/src/main/java/ai/reveng/model/GetUserResponse.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -79,7 +80,7 @@ public class GetUserResponse { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nonnull - private java.time.Instant creation; + private OffsetDateTime creation; public static final String SERIALIZED_NAME_TUTORIAL_SEEN = "tutorial_seen"; @SerializedName(SERIALIZED_NAME_TUTORIAL_SEEN) @@ -184,7 +185,7 @@ public void setEmail(@javax.annotation.Nonnull String email) { } - public GetUserResponse creation(@javax.annotation.Nonnull java.time.Instant creation) { + public GetUserResponse creation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; return this; } @@ -194,11 +195,11 @@ public GetUserResponse creation(@javax.annotation.Nonnull java.time.Instant crea * @return creation */ @javax.annotation.Nonnull - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nonnull java.time.Instant creation) { + public void setCreation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; } diff --git a/src/main/java/ai/reveng/model/UserActivityResponse.java b/src/main/java/ai/reveng/model/UserActivityResponse.java index 4b3687f..17614e0 100644 --- a/src/main/java/ai/reveng/model/UserActivityResponse.java +++ b/src/main/java/ai/reveng/model/UserActivityResponse.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import com.google.gson.Gson; @@ -64,7 +65,7 @@ public class UserActivityResponse { public static final String SERIALIZED_NAME_CREATION = "creation"; @SerializedName(SERIALIZED_NAME_CREATION) @javax.annotation.Nonnull - private java.time.Instant creation; + private OffsetDateTime creation; public static final String SERIALIZED_NAME_MESSAGE = "message"; @SerializedName(SERIALIZED_NAME_MESSAGE) @@ -122,7 +123,7 @@ public void setActivityScope(@javax.annotation.Nonnull String activityScope) { } - public UserActivityResponse creation(@javax.annotation.Nonnull java.time.Instant creation) { + public UserActivityResponse creation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; return this; } @@ -132,11 +133,11 @@ public UserActivityResponse creation(@javax.annotation.Nonnull java.time.Instant * @return creation */ @javax.annotation.Nonnull - public java.time.Instant getCreation() { + public OffsetDateTime getCreation() { return creation; } - public void setCreation(@javax.annotation.Nonnull java.time.Instant creation) { + public void setCreation(@javax.annotation.Nonnull OffsetDateTime creation) { this.creation = creation; } diff --git a/src/test/java/ai/reveng/model/AnalysisRecordTest.java b/src/test/java/ai/reveng/model/AnalysisRecordTest.java index 1fd4816..744afeb 100644 --- a/src/test/java/ai/reveng/model/AnalysisRecordTest.java +++ b/src/test/java/ai/reveng/model/AnalysisRecordTest.java @@ -19,6 +19,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; import org.junit.jupiter.api.Disabled; diff --git a/src/test/java/ai/reveng/model/BasicTest.java b/src/test/java/ai/reveng/model/BasicTest.java index 0e3aafb..b29815f 100644 --- a/src/test/java/ai/reveng/model/BasicTest.java +++ b/src/test/java/ai/reveng/model/BasicTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/BinaryAdditionalResponseTest.java b/src/test/java/ai/reveng/model/BinaryAdditionalResponseTest.java index d9beb50..bb20357 100644 --- a/src/test/java/ai/reveng/model/BinaryAdditionalResponseTest.java +++ b/src/test/java/ai/reveng/model/BinaryAdditionalResponseTest.java @@ -19,6 +19,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; import org.junit.jupiter.api.Disabled; diff --git a/src/test/java/ai/reveng/model/BinaryDetailsResponseTest.java b/src/test/java/ai/reveng/model/BinaryDetailsResponseTest.java index c84879e..ebc843b 100644 --- a/src/test/java/ai/reveng/model/BinaryDetailsResponseTest.java +++ b/src/test/java/ai/reveng/model/BinaryDetailsResponseTest.java @@ -19,6 +19,7 @@ import com.google.gson.stream.JsonWriter; import java.io.IOException; import java.math.BigDecimal; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/BinaryExternalsResponseTest.java b/src/test/java/ai/reveng/model/BinaryExternalsResponseTest.java index ea0ff35..4357bb6 100644 --- a/src/test/java/ai/reveng/model/BinaryExternalsResponseTest.java +++ b/src/test/java/ai/reveng/model/BinaryExternalsResponseTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import java.util.HashMap; import java.util.Map; diff --git a/src/test/java/ai/reveng/model/BinarySearchResultTest.java b/src/test/java/ai/reveng/model/BinarySearchResultTest.java index d633628..1c127a1 100644 --- a/src/test/java/ai/reveng/model/BinarySearchResultTest.java +++ b/src/test/java/ai/reveng/model/BinarySearchResultTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; diff --git a/src/test/java/ai/reveng/model/CollectionBinaryResponseTest.java b/src/test/java/ai/reveng/model/CollectionBinaryResponseTest.java index 4bee9ff..e97653c 100644 --- a/src/test/java/ai/reveng/model/CollectionBinaryResponseTest.java +++ b/src/test/java/ai/reveng/model/CollectionBinaryResponseTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/CollectionListItemTest.java b/src/test/java/ai/reveng/model/CollectionListItemTest.java index fc6a6d1..cb33a68 100644 --- a/src/test/java/ai/reveng/model/CollectionListItemTest.java +++ b/src/test/java/ai/reveng/model/CollectionListItemTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; diff --git a/src/test/java/ai/reveng/model/CollectionResponseBinariesInnerTest.java b/src/test/java/ai/reveng/model/CollectionResponseBinariesInnerTest.java index ade8020..f280a18 100644 --- a/src/test/java/ai/reveng/model/CollectionResponseBinariesInnerTest.java +++ b/src/test/java/ai/reveng/model/CollectionResponseBinariesInnerTest.java @@ -19,6 +19,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/CollectionResponseTest.java b/src/test/java/ai/reveng/model/CollectionResponseTest.java index 9e42340..2ad5c1a 100644 --- a/src/test/java/ai/reveng/model/CollectionResponseTest.java +++ b/src/test/java/ai/reveng/model/CollectionResponseTest.java @@ -20,6 +20,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; diff --git a/src/test/java/ai/reveng/model/CollectionSearchResultTest.java b/src/test/java/ai/reveng/model/CollectionSearchResultTest.java index 6e33480..862b2b2 100644 --- a/src/test/java/ai/reveng/model/CollectionSearchResultTest.java +++ b/src/test/java/ai/reveng/model/CollectionSearchResultTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.List; diff --git a/src/test/java/ai/reveng/model/CommentResponseTest.java b/src/test/java/ai/reveng/model/CommentResponseTest.java index 59be1db..825a91f 100644 --- a/src/test/java/ai/reveng/model/CommentResponseTest.java +++ b/src/test/java/ai/reveng/model/CommentResponseTest.java @@ -19,6 +19,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.openapitools.jackson.nullable.JsonNullable; import org.junit.jupiter.api.Disabled; diff --git a/src/test/java/ai/reveng/model/ExternalResponseTest.java b/src/test/java/ai/reveng/model/ExternalResponseTest.java index 2062eea..ebbd567 100644 --- a/src/test/java/ai/reveng/model/ExternalResponseTest.java +++ b/src/test/java/ai/reveng/model/ExternalResponseTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import java.util.HashMap; import java.util.Map; diff --git a/src/test/java/ai/reveng/model/FunctionSearchResultTest.java b/src/test/java/ai/reveng/model/FunctionSearchResultTest.java index 3dec819..8d34c11 100644 --- a/src/test/java/ai/reveng/model/FunctionSearchResultTest.java +++ b/src/test/java/ai/reveng/model/FunctionSearchResultTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/GetUserResponseTest.java b/src/test/java/ai/reveng/model/GetUserResponseTest.java index fdfebb5..c736ae6 100644 --- a/src/test/java/ai/reveng/model/GetUserResponseTest.java +++ b/src/test/java/ai/reveng/model/GetUserResponseTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/src/test/java/ai/reveng/model/UserActivityResponseTest.java b/src/test/java/ai/reveng/model/UserActivityResponseTest.java index 500272b..3051182 100644 --- a/src/test/java/ai/reveng/model/UserActivityResponseTest.java +++ b/src/test/java/ai/reveng/model/UserActivityResponseTest.java @@ -18,6 +18,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import java.io.IOException; +import java.time.OffsetDateTime; import java.util.Arrays; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test;