diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 7352fe09..f25c7b69 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,7 +1,7 @@ - + - + \ No newline at end of file diff --git a/README.md b/README.md index 71d0c2e3..40c43490 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Add these dependency to your project's POM: org.sendbird sendbird-platform-sdk - 1.0.20 + 1.1.0 ``` @@ -110,7 +110,7 @@ Add this dependency to your project's build file: ```groovy dependencies { - implementation "org.sendbird:sendbird-platform-sdk:1.0.20" + implementation "org.sendbird:sendbird-platform-sdk:1.1.0" } allprojects { diff --git a/build.gradle b/build.gradle index 4515c883..b80d3c75 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'eclipse' apply plugin: 'com.diffplug.spotless' group = 'org.sendbird' -version = '1.0.20' +version = '1.1.0' buildscript { repositories { @@ -78,8 +78,8 @@ if(hasProperty('target') && target == 'android') { apply plugin: 'java' apply plugin: 'maven-publish' - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 publishing { publications { @@ -102,8 +102,8 @@ ext { jackson_version = "2.13.2" jackson_databind_version = "2.13.2.2" jackson_databind_nullable_version = "0.2.2" - jakarta_annotation_version = "1.3.5" - jersey_version = "2.35" + jakarta_annotation_version = "2.1.1" + jersey_version = "3.1.5" junit_version = "5.8.2" } @@ -151,7 +151,7 @@ spotless { java { // don't need to set target, it is inferred from java // apply a specific flavor of google-java-format - googleJavaFormat('1.8').aosp().reflowLongStrings() + googleJavaFormat('17').aosp().reflowLongStrings() removeUnusedImports() importOrder() } diff --git a/build.sbt b/build.sbt index 55858e26..0fb35d09 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ lazy val root = (project in file(".")). settings( organization := "org.sendbird", name := "sendbird-platform-sdk", - version := "1.0.20", - scalaVersion := "2.11.4", + version := "1.1.0", + scalaVersion := "2.13.6", scalacOptions ++= Seq("-feature"), Compile / javacOptions ++= Seq("-Xlint:deprecation"), Compile / packageDoc / publishArtifact := false, @@ -11,17 +11,17 @@ lazy val root = (project in file(".")). libraryDependencies ++= Seq( "com.google.code.findbugs" % "jsr305" % "3.0.0", "io.swagger" % "swagger-annotations" % "1.6.5", - "org.glassfish.jersey.core" % "jersey-client" % "2.35", - "org.glassfish.jersey.inject" % "jersey-hk2" % "2.35", - "org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35", - "org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35", - "org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35", + "org.glassfish.jersey.core" % "jersey-client" % "3.1.5", + "org.glassfish.jersey.inject" % "jersey-hk2" % "3.1.5", + "org.glassfish.jersey.media" % "jersey-media-multipart" % "3.1.5", + "org.glassfish.jersey.media" % "jersey-media-json-jackson" % "3.1.5", + "org.glassfish.jersey.connectors" % "jersey-apache-connector" % "3.1.5", "com.fasterxml.jackson.core" % "jackson-core" % "2.13.2" % "compile", "com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.2" % "compile", "com.fasterxml.jackson.core" % "jackson-databind" % "2.13.2.2" % "compile", "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.2" % "compile", "org.openapitools" % "jackson-databind-nullable" % "0.2.2" % "compile", - "jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile", + "jakarta.annotation" % "jakarta.annotation-api" % "2.1.1" % "compile", "org.junit.jupiter" % "junit-jupiter-api" % "5.8.2" % "test" ) ) diff --git a/pom.xml b/pom.xml index dfaca6ab..e3655b34 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ sendbird-platform-sdk jar sendbird-platform-sdk - 1.0.20 + 1.1.0 https://github.com/sendbird/sendbird-platform-sdk-java Sendbird Platform API SDK @@ -135,8 +135,8 @@ maven-compiler-plugin 3.10.1 - 1.8 - 1.8 + 17 + 17 true 128m 512m @@ -160,7 +160,7 @@ none - 1.8 + 17 http.response.details @@ -214,7 +214,7 @@ - 1.8 + 17 true @@ -334,11 +334,11 @@ UTF-8 1.6.5 - 2.35 + 3.1.5 2.13.2 2.13.2.2 0.2.2 - 1.3.5 + 2.1.1 5.8.2 2.21.0 diff --git a/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java b/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java index d9605936..6dab99f7 100644 --- a/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java +++ b/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java @@ -17,14 +17,14 @@ import java.util.Objects; import java.lang.reflect.Type; import java.util.Map; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import com.fasterxml.jackson.annotation.JsonValue; /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationData.java b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationData.java index 5c82d20a..50c62f84 100644 --- a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationData.java +++ b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationData.java @@ -43,7 +43,7 @@ AddApnsPushConfigurationData.JSON_PROPERTY_APNS_TYPE }) @JsonTypeName("addApnsPushConfigurationData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddApnsPushConfigurationData { public static final String JSON_PROPERTY_APNS_CERT = "apns_cert"; private File apnsCert; @@ -81,7 +81,7 @@ public AddApnsPushConfigurationData apnsCert(File apnsCert) { * In a form of the `multipart/form-data` content type, specifies a [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file of which type is either development or production. Sendbird server scans the content of the file, finds out the certificate type, and then registers the file as the corresponding type. If you upload a wrong file, you will receive an error. * @return apnsCert **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "In a form of the `multipart/form-data` content type, specifies a [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file of which type is either development or production. Sendbird server scans the content of the file, finds out the certificate type, and then registers the file as the corresponding type. If you upload a wrong file, you will receive an error.") @JsonProperty(JSON_PROPERTY_APNS_CERT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -107,7 +107,7 @@ public AddApnsPushConfigurationData apnsCertEnvType(String apnsCertEnvType) { * Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. There is no need to specify this property when the apns_cert above is specified. * @return apnsCertEnvType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. There is no need to specify this property when the apns_cert above is specified.") @JsonProperty(JSON_PROPERTY_APNS_CERT_ENV_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -133,7 +133,7 @@ public AddApnsPushConfigurationData apnsCertPassword(String apnsCertPassword) { * Specifies the password of the cerfificate file which has been set during the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) export. * @return apnsCertPassword **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the password of the cerfificate file which has been set during the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) export.") @JsonProperty(JSON_PROPERTY_APNS_CERT_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -159,7 +159,7 @@ public AddApnsPushConfigurationData hasUnreadCountBadge(Boolean hasUnreadCountBa * Determines whether to badge your client app's icon with the number of a user's unread messages. (Default: true) * @return hasUnreadCountBadge **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to badge your client app's icon with the number of a user's unread messages. (Default: true)") @JsonProperty(JSON_PROPERTY_HAS_UNREAD_COUNT_BADGE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -185,7 +185,7 @@ public AddApnsPushConfigurationData contentAvailable(Boolean contentAvailable) { * Determines for your client app whether to perform a silent background update on a user's device. For more information, see the Apple Developer Documentation's [Pushing Updates to Your App Silently](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/pushing_updates_to_your_app_silently). (Default: false) * @return contentAvailable **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for your client app whether to perform a silent background update on a user's device. For more information, see the Apple Developer Documentation's [Pushing Updates to Your App Silently](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/pushing_updates_to_your_app_silently). (Default: false)") @JsonProperty(JSON_PROPERTY_CONTENT_AVAILABLE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -211,7 +211,7 @@ public AddApnsPushConfigurationData mutableContent(Boolean mutableContent) { * Determines for your client app whether or not to modify the payload of a push notification before it is displayed on a user's device. For more information, see the Apple Developer Documentation's [Modifying Content in Newly Delivered Notifications](https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications). (Default: false) * @return mutableContent **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for your client app whether or not to modify the payload of a push notification before it is displayed on a user's device. For more information, see the Apple Developer Documentation's [Modifying Content in Newly Delivered Notifications](https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications). (Default: false)") @JsonProperty(JSON_PROPERTY_MUTABLE_CONTENT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -237,7 +237,7 @@ public AddApnsPushConfigurationData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file can be in the app's main bundle or in the `Library/Sounds` folder of the app's data container. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file can be in the app's main bundle or in the `Library/Sounds` folder of the app's data container.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -263,7 +263,7 @@ public AddApnsPushConfigurationData apnsType(String apnsType) { * (Deprecated) Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update. * @return apnsType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "(Deprecated) Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update.") @JsonProperty(JSON_PROPERTY_APNS_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponse.java b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponse.java index 1bec05ff..fe23c256 100644 --- a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponse.java +++ b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponse.java @@ -38,7 +38,7 @@ AddApnsPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("addApnsPushConfigurationResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddApnsPushConfigurationResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -63,7 +63,7 @@ public AddApnsPushConfigurationResponse addPushConfigurationsItem(AddApnsPushCon * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponsePushConfigurationsInner.java b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponsePushConfigurationsInner.java index a886fdfd..cfc699de 100644 --- a/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponsePushConfigurationsInner.java +++ b/src/main/java/org/openapitools/client/model/AddApnsPushConfigurationResponsePushConfigurationsInner.java @@ -45,7 +45,7 @@ AddApnsPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("addApnsPushConfigurationResponse_push_configurations_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddApnsPushConfigurationResponsePushConfigurationsInner { public static final String JSON_PROPERTY_ID = "id"; private String id; @@ -89,7 +89,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner id(String id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -115,7 +115,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner pushType(String p * Get pushType * @return pushType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -141,7 +141,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner createdAt(BigDeci * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -167,7 +167,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner apnsCerEnvType(St * Get apnsCerEnvType * @return apnsCerEnvType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APNS_CER_ENV_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,7 +193,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner apnsExpiration(Bi * Get apnsExpiration * @return apnsExpiration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APNS_EXPIRATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -219,7 +219,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner apnsName(String a * Get apnsName * @return apnsName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APNS_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -245,7 +245,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner hasUnreadCountBad * Get hasUnreadCountBadge * @return hasUnreadCountBadge **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HAS_UNREAD_COUNT_BADGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,7 +271,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner contentAvailable( * Get contentAvailable * @return contentAvailable **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONTENT_AVAILABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,7 +297,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner mutableContent(Bo * Get mutableContent * @return mutableContent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTABLE_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -323,7 +323,7 @@ public AddApnsPushConfigurationResponsePushConfigurationsInner pushSound(String * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponse.java b/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponse.java index aee3a46d..eb9a0c4a 100644 --- a/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponse.java +++ b/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponse.java @@ -38,7 +38,7 @@ AddEmojiCategoriesResponse.JSON_PROPERTY_EMOJI_CATEGORIES }) @JsonTypeName("addEmojiCategoriesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddEmojiCategoriesResponse { public static final String JSON_PROPERTY_EMOJI_CATEGORIES = "emoji_categories"; private List emojiCategories = null; @@ -63,7 +63,7 @@ public AddEmojiCategoriesResponse addEmojiCategoriesItem(AddEmojiCategoriesRespo * Get emojiCategories * @return emojiCategories **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJI_CATEGORIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponseEmojiCategoriesInner.java b/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponseEmojiCategoriesInner.java index 285ee65c..37f82a7a 100644 --- a/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponseEmojiCategoriesInner.java +++ b/src/main/java/org/openapitools/client/model/AddEmojiCategoriesResponseEmojiCategoriesInner.java @@ -38,7 +38,7 @@ AddEmojiCategoriesResponseEmojiCategoriesInner.JSON_PROPERTY_URL }) @JsonTypeName("addEmojiCategoriesResponse_emoji_categories_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddEmojiCategoriesResponseEmojiCategoriesInner { public static final String JSON_PROPERTY_ID = "id"; private BigDecimal id; @@ -61,7 +61,7 @@ public AddEmojiCategoriesResponseEmojiCategoriesInner id(BigDecimal id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public AddEmojiCategoriesResponseEmojiCategoriesInner name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public AddEmojiCategoriesResponseEmojiCategoriesInner url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddEmojisData.java b/src/main/java/org/openapitools/client/model/AddEmojisData.java index e2e06c9c..3ef68f23 100644 --- a/src/main/java/org/openapitools/client/model/AddEmojisData.java +++ b/src/main/java/org/openapitools/client/model/AddEmojisData.java @@ -38,7 +38,7 @@ AddEmojisData.JSON_PROPERTY_EMOJIS }) @JsonTypeName("addEmojisData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddEmojisData { public static final String JSON_PROPERTY_EMOJI_CATEGORY_ID = "emoji_category_id"; private Integer emojiCategoryId; @@ -58,7 +58,7 @@ public AddEmojisData emojiCategoryId(Integer emojiCategoryId) { * Specifies the unique ID of the emoji category that a list of new emojis belong to. * @return emojiCategoryId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the emoji category that a list of new emojis belong to.") @JsonProperty(JSON_PROPERTY_EMOJI_CATEGORY_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,7 +89,7 @@ public AddEmojisData addEmojisItem(Object emojisItem) { * Specifies a list of one or more new emojis to register. * @return emojis **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a list of one or more new emojis to register.") @JsonProperty(JSON_PROPERTY_EMOJIS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddEmojisResponse.java b/src/main/java/org/openapitools/client/model/AddEmojisResponse.java index 04120f2c..6fdaf5bf 100644 --- a/src/main/java/org/openapitools/client/model/AddEmojisResponse.java +++ b/src/main/java/org/openapitools/client/model/AddEmojisResponse.java @@ -38,7 +38,7 @@ AddEmojisResponse.JSON_PROPERTY_EMOJIS }) @JsonTypeName("addEmojisResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddEmojisResponse { public static final String JSON_PROPERTY_EMOJIS = "emojis"; private List emojis = null; @@ -63,7 +63,7 @@ public AddEmojisResponse addEmojisItem(ListAllEmojisAndEmojiCategoriesResponseEm * Get emojis * @return emojis **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJIS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddExtraDataToMessageData.java b/src/main/java/org/openapitools/client/model/AddExtraDataToMessageData.java index 5741d3cd..38706261 100644 --- a/src/main/java/org/openapitools/client/model/AddExtraDataToMessageData.java +++ b/src/main/java/org/openapitools/client/model/AddExtraDataToMessageData.java @@ -38,7 +38,7 @@ AddExtraDataToMessageData.JSON_PROPERTY_SORTED_METAARRAY }) @JsonTypeName("addExtraDataToMessageData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddExtraDataToMessageData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -64,7 +64,7 @@ public AddExtraDataToMessageData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public AddExtraDataToMessageData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public AddExtraDataToMessageData messageId(Integer messageId) { * Specifies the unique ID of the message to add key-values items for additional information. * @return messageId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the message to add key-values items for additional information.") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public AddExtraDataToMessageData sortedMetaarray(String sortedMetaarray) { * Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified. * @return sortedMetaarray **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified.") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddExtraDataToMessageResponse.java b/src/main/java/org/openapitools/client/model/AddExtraDataToMessageResponse.java index c6538df1..d9b3ad1c 100644 --- a/src/main/java/org/openapitools/client/model/AddExtraDataToMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/AddExtraDataToMessageResponse.java @@ -38,7 +38,7 @@ AddExtraDataToMessageResponse.JSON_PROPERTY_SORTED_METAARRAY }) @JsonTypeName("addExtraDataToMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddExtraDataToMessageResponse { public static final String JSON_PROPERTY_SORTED_METAARRAY = "sorted_metaarray"; private List sortedMetaarray = null; @@ -63,7 +63,7 @@ public AddExtraDataToMessageResponse addSortedMetaarrayItem(ListMessagesResponse * Get sortedMetaarray * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationData.java b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationData.java index 24f078f2..5135e85f 100644 --- a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationData.java +++ b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationData.java @@ -36,7 +36,7 @@ AddFcmPushConfigurationData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("addFcmPushConfigurationData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddFcmPushConfigurationData { public static final String JSON_PROPERTY_API_KEY = "api_key"; private String apiKey; @@ -56,7 +56,7 @@ public AddFcmPushConfigurationData apiKey(String apiKey) { * Specifies the FCM server key to register. * @return apiKey **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the FCM server key to register.") @JsonProperty(JSON_PROPERTY_API_KEY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public AddFcmPushConfigurationData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponse.java b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponse.java index cce5bc92..e6b7b7ea 100644 --- a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponse.java +++ b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponse.java @@ -38,7 +38,7 @@ AddFcmPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("addFcmPushConfigurationResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddFcmPushConfigurationResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -63,7 +63,7 @@ public AddFcmPushConfigurationResponse addPushConfigurationsItem(AddFcmPushConfi * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponsePushConfigurationsInner.java b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponsePushConfigurationsInner.java index e7ab522e..1f65798e 100644 --- a/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponsePushConfigurationsInner.java +++ b/src/main/java/org/openapitools/client/model/AddFcmPushConfigurationResponsePushConfigurationsInner.java @@ -38,7 +38,7 @@ AddFcmPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("addFcmPushConfigurationResponse_push_configurations_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddFcmPushConfigurationResponsePushConfigurationsInner { public static final String JSON_PROPERTY_ID = "id"; private String id; @@ -64,7 +64,7 @@ public AddFcmPushConfigurationResponsePushConfigurationsInner id(String id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,7 +90,7 @@ public AddFcmPushConfigurationResponsePushConfigurationsInner pushType(String pu * Get pushType * @return pushType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public AddFcmPushConfigurationResponsePushConfigurationsInner apiKey(String apiK * Get apiKey * @return apiKey **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_API_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public AddFcmPushConfigurationResponsePushConfigurationsInner pushSound(String p * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationData.java b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationData.java index ea9248ab..4bf4cd10 100644 --- a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationData.java +++ b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationData.java @@ -37,7 +37,7 @@ AddHmsPushConfigurationData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("addHmsPushConfigurationData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddHmsPushConfigurationData { public static final String JSON_PROPERTY_HUAWEI_APP_ID = "huawei_app_id"; private String huaweiAppId; @@ -60,7 +60,7 @@ public AddHmsPushConfigurationData huaweiAppId(String huaweiAppId) { * Specifies the unique ID of application registered to the HMS server. * @return huaweiAppId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of application registered to the HMS server.") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public AddHmsPushConfigurationData huaweiAppSecret(String huaweiAppSecret) { * Specifies the secret key allocated to the application. * @return huaweiAppSecret **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the secret key allocated to the application.") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_SECRET) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public AddHmsPushConfigurationData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponse.java b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponse.java index 471cbb28..69112b57 100644 --- a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponse.java +++ b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponse.java @@ -38,7 +38,7 @@ AddHmsPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("addHmsPushConfigurationResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddHmsPushConfigurationResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -63,7 +63,7 @@ public AddHmsPushConfigurationResponse addPushConfigurationsItem(AddHmsPushConfi * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponsePushConfigurationsInner.java b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponsePushConfigurationsInner.java index 8fbf092a..740a567e 100644 --- a/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponsePushConfigurationsInner.java +++ b/src/main/java/org/openapitools/client/model/AddHmsPushConfigurationResponsePushConfigurationsInner.java @@ -39,7 +39,7 @@ AddHmsPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("addHmsPushConfigurationResponse_push_configurations_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddHmsPushConfigurationResponsePushConfigurationsInner { public static final String JSON_PROPERTY_ID = "id"; private String id; @@ -68,7 +68,7 @@ public AddHmsPushConfigurationResponsePushConfigurationsInner id(String id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public AddHmsPushConfigurationResponsePushConfigurationsInner pushType(String pu * Get pushType * @return pushType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public AddHmsPushConfigurationResponsePushConfigurationsInner huaweiAppId(String * Get huaweiAppId * @return huaweiAppId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,7 +146,7 @@ public AddHmsPushConfigurationResponsePushConfigurationsInner huaweiAppSecret(St * Get huaweiAppSecret * @return huaweiAppSecret **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_SECRET) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -172,7 +172,7 @@ public AddHmsPushConfigurationResponsePushConfigurationsInner pushSound(String p * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddIpToWhitelistData.java b/src/main/java/org/openapitools/client/model/AddIpToWhitelistData.java index ae25b3a6..e04b96d8 100644 --- a/src/main/java/org/openapitools/client/model/AddIpToWhitelistData.java +++ b/src/main/java/org/openapitools/client/model/AddIpToWhitelistData.java @@ -37,7 +37,7 @@ AddIpToWhitelistData.JSON_PROPERTY_IP_WHITELIST_ADDRESSES }) @JsonTypeName("addIpToWhitelistData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddIpToWhitelistData { public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses"; private List ipWhitelistAddresses = new ArrayList<>(); @@ -59,7 +59,7 @@ public AddIpToWhitelistData addIpWhitelistAddressesItem(String ipWhitelistAddres * Specifies an array of one or more IP ranges and addresses to add to a whitelist. * @return ipWhitelistAddresses **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IP ranges and addresses to add to a whitelist.") @JsonProperty(JSON_PROPERTY_IP_WHITELIST_ADDRESSES) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddIpToWhitelistResponse.java b/src/main/java/org/openapitools/client/model/AddIpToWhitelistResponse.java index 83ef62fd..adea6726 100644 --- a/src/main/java/org/openapitools/client/model/AddIpToWhitelistResponse.java +++ b/src/main/java/org/openapitools/client/model/AddIpToWhitelistResponse.java @@ -37,7 +37,7 @@ AddIpToWhitelistResponse.JSON_PROPERTY_IP_WHITELIST_ADDRESSES }) @JsonTypeName("addIpToWhitelistResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddIpToWhitelistResponse { public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses"; private List ipWhitelistAddresses = null; @@ -62,7 +62,7 @@ public AddIpToWhitelistResponse addIpWhitelistAddressesItem(String ipWhitelistAd * Get ipWhitelistAddresses * @return ipWhitelistAddresses **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IP_WHITELIST_ADDRESSES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddReactionToAMessageData.java b/src/main/java/org/openapitools/client/model/AddReactionToAMessageData.java index 3d2ed25e..1b5cc3a6 100644 --- a/src/main/java/org/openapitools/client/model/AddReactionToAMessageData.java +++ b/src/main/java/org/openapitools/client/model/AddReactionToAMessageData.java @@ -39,7 +39,7 @@ AddReactionToAMessageData.JSON_PROPERTY_REACTION }) @JsonTypeName("addReactionToAMessageData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddReactionToAMessageData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -68,7 +68,7 @@ public AddReactionToAMessageData channelType(String channelType) { * Specifies the type of the channel. Currently, a value of group_channels is only available for the parameter. * @return channelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the channel. Currently, a value of group_channels is only available for the parameter.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,7 +94,7 @@ public AddReactionToAMessageData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,7 +120,7 @@ public AddReactionToAMessageData messageId(Integer messageId) { * Specifies the unique ID of the message to add a reaction to. * @return messageId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the message to add a reaction to.") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public AddReactionToAMessageData userId(String userId) { * Specifies the ID of the user who reacts to the message. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the user who reacts to the message.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,7 +172,7 @@ public AddReactionToAMessageData reaction(String reaction) { * Specifies the unique key of the reaction to be added to the message. The length is limited to 192 charaters. * @return reaction **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique key of the reaction to be added to the message. The length is limited to 192 charaters.") @JsonProperty(JSON_PROPERTY_REACTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddReactionToAMessageResponse.java b/src/main/java/org/openapitools/client/model/AddReactionToAMessageResponse.java index 055e3210..da1aabc1 100644 --- a/src/main/java/org/openapitools/client/model/AddReactionToAMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/AddReactionToAMessageResponse.java @@ -41,7 +41,7 @@ AddReactionToAMessageResponse.JSON_PROPERTY_MSG_ID }) @JsonTypeName("addReactionToAMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddReactionToAMessageResponse { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -73,7 +73,7 @@ public AddReactionToAMessageResponse userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public AddReactionToAMessageResponse operation(String operation) { * Get operation * @return operation **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public AddReactionToAMessageResponse success(Boolean success) { * Get success * @return success **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUCCESS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public AddReactionToAMessageResponse reaction(String reaction) { * Get reaction * @return reaction **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public AddReactionToAMessageResponse updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public AddReactionToAMessageResponse msgId(BigDecimal msgId) { * Get msgId * @return msgId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MSG_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenData.java b/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenData.java index be77c48f..de6cb8c2 100644 --- a/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenData.java +++ b/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenData.java @@ -37,7 +37,7 @@ AddRegistrationOrDeviceTokenData.JSON_PROPERTY_APNS_DEVICE_TOKEN }) @JsonTypeName("addRegistrationOrDeviceTokenData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddRegistrationOrDeviceTokenData { public static final String JSON_PROPERTY_GCM_REG_TOKEN = "gcm_reg_token"; private String gcmRegToken; @@ -60,7 +60,7 @@ public AddRegistrationOrDeviceTokenData gcmRegToken(String gcmRegToken) { * Specifies a registration token for Firebase Cloud Messaging (formerly [Google Cloud Messaging](https://developers.google.com/cloud-messaging/)). * @return gcmRegToken **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a registration token for Firebase Cloud Messaging (formerly [Google Cloud Messaging](https://developers.google.com/cloud-messaging/)).") @JsonProperty(JSON_PROPERTY_GCM_REG_TOKEN) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public AddRegistrationOrDeviceTokenData huaweiDeviceToken(String huaweiDeviceTok * Specifies a device token for Huawei Mobile Services. * @return huaweiDeviceToken **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a device token for Huawei Mobile Services.") @JsonProperty(JSON_PROPERTY_HUAWEI_DEVICE_TOKEN) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public AddRegistrationOrDeviceTokenData apnsDeviceToken(String apnsDeviceToken) * Specifies a device token for Apple Push Notification Service. * @return apnsDeviceToken **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a device token for Apple Push Notification Service.") @JsonProperty(JSON_PROPERTY_APNS_DEVICE_TOKEN) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenResponse.java b/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenResponse.java index 923d8d15..eb28bf01 100644 --- a/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/AddRegistrationOrDeviceTokenResponse.java @@ -38,7 +38,7 @@ AddRegistrationOrDeviceTokenResponse.JSON_PROPERTY_USER }) @JsonTypeName("addRegistrationOrDeviceTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AddRegistrationOrDeviceTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -61,7 +61,7 @@ public AddRegistrationOrDeviceTokenResponse token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public AddRegistrationOrDeviceTokenResponse type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public AddRegistrationOrDeviceTokenResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/BanFromChannelsWithCustomChannelTypesData.java b/src/main/java/org/openapitools/client/model/BanFromChannelsWithCustomChannelTypesData.java index fbe4a678..1c7779b4 100644 --- a/src/main/java/org/openapitools/client/model/BanFromChannelsWithCustomChannelTypesData.java +++ b/src/main/java/org/openapitools/client/model/BanFromChannelsWithCustomChannelTypesData.java @@ -37,7 +37,7 @@ BanFromChannelsWithCustomChannelTypesData.JSON_PROPERTY_CHANNEL_CUSTOM_TYPES }) @JsonTypeName("banFromChannelsWithCustomChannelTypesData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BanFromChannelsWithCustomChannelTypesData { public static final String JSON_PROPERTY_CHANNEL_CUSTOM_TYPES = "channel_custom_types"; private List channelCustomTypes = new ArrayList<>(); @@ -59,7 +59,7 @@ public BanFromChannelsWithCustomChannelTypesData addChannelCustomTypesItem(Strin * Specifies an array of one or more custom channel types, in order to ban the user from channels with the channel types. The user is permanently banned unless unbanned (10 years, technically). * @return channelCustomTypes **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more custom channel types, in order to ban the user from channels with the channel types. The user is permanently banned unless unbanned (10 years, technically).") @JsonProperty(JSON_PROPERTY_CHANNEL_CUSTOM_TYPES) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeData.java b/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeData.java index 6b989470..675e2808 100644 --- a/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeData.java +++ b/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeData.java @@ -39,7 +39,7 @@ BanUsersInChannelsWithCustomChannelTypeData.JSON_PROPERTY_ON_DEMAND_UPSERT }) @JsonTypeName("banUsersInChannelsWithCustomChannelTypeData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BanUsersInChannelsWithCustomChannelTypeData { public static final String JSON_PROPERTY_BANNED_LIST = "banned_list"; private List bannedList = new ArrayList<>(); @@ -64,7 +64,7 @@ public BanUsersInChannelsWithCustomChannelTypeData addBannedListItem(BanUsersInC * Get bannedList * @return bannedList **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_BANNED_LIST) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public BanUsersInChannelsWithCustomChannelTypeData onDemandUpsert(Boolean onDema * Get onDemandUpsert * @return onDemandUpsert **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ON_DEMAND_UPSERT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.java b/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.java index 3dd2a581..67d21bc5 100644 --- a/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.java +++ b/src/main/java/org/openapitools/client/model/BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.java @@ -38,7 +38,7 @@ BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("banUsersInChannelsWithCustomChannelTypeData_banned_list_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BanUsersInChannelsWithCustomChannelTypeDataBannedListInner { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -61,7 +61,7 @@ public BanUsersInChannelsWithCustomChannelTypeDataBannedListInner userId(String * Get userId * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,7 +87,7 @@ public BanUsersInChannelsWithCustomChannelTypeDataBannedListInner seconds(BigDec * Get seconds * @return seconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public BanUsersInChannelsWithCustomChannelTypeDataBannedListInner description(St * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/Blob.java b/src/main/java/org/openapitools/client/model/Blob.java index 34b79487..de31b63b 100644 --- a/src/main/java/org/openapitools/client/model/Blob.java +++ b/src/main/java/org/openapitools/client/model/Blob.java @@ -36,7 +36,7 @@ Blob.JSON_PROPERTY_SIZE, Blob.JSON_PROPERTY_TYPE }) -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class Blob { public static final String JSON_PROPERTY_SIZE = "size"; private BigDecimal size; @@ -56,7 +56,7 @@ public Blob size(BigDecimal size) { * Get size * @return size **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,7 +82,7 @@ public Blob type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/BlockUserData.java b/src/main/java/org/openapitools/client/model/BlockUserData.java index bf9186d9..280c8a68 100644 --- a/src/main/java/org/openapitools/client/model/BlockUserData.java +++ b/src/main/java/org/openapitools/client/model/BlockUserData.java @@ -40,7 +40,7 @@ BlockUserData.JSON_PROPERTY_USERS }) @JsonTypeName("blockUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BlockUserData { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -66,7 +66,7 @@ public BlockUserData userId(String userId) { * Specifies the unique ID of the user to block. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to block.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -92,7 +92,7 @@ public BlockUserData targetId(String targetId) { * Specifies the ID of the user to be blocked. * @return targetId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the user to be blocked.") @JsonProperty(JSON_PROPERTY_TARGET_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -123,7 +123,7 @@ public BlockUserData addUserIdsItem(String userIdsItem) { * Specifies an array of the IDs of the users to be blocked at a time. (for bulk mode) * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of the IDs of the users to be blocked at a time. (for bulk mode)") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -154,7 +154,7 @@ public BlockUserData addUsersItem(String usersItem) { * Specifies an array of the IDs of the users to be blocked at a time. The user_ids above and this property can be used interchangeably. (for bulk mode) * @return users **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of the IDs of the users to be blocked at a time. The user_ids above and this property can be used interchangeably. (for bulk mode)") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/BlockUserResponse.java b/src/main/java/org/openapitools/client/model/BlockUserResponse.java index 905788c6..bbc3101e 100644 --- a/src/main/java/org/openapitools/client/model/BlockUserResponse.java +++ b/src/main/java/org/openapitools/client/model/BlockUserResponse.java @@ -38,7 +38,7 @@ BlockUserResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("blockUserResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BlockUserResponse { public static final String JSON_PROPERTY_USERS = "users"; private List users = null; @@ -66,7 +66,7 @@ public BlockUserResponse addUsersItem(String usersItem) { * Get users * @return users **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public BlockUserResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ChoosePushNotificationContentTemplateResponse.java b/src/main/java/org/openapitools/client/model/ChoosePushNotificationContentTemplateResponse.java index 6a083a7a..c94ca719 100644 --- a/src/main/java/org/openapitools/client/model/ChoosePushNotificationContentTemplateResponse.java +++ b/src/main/java/org/openapitools/client/model/ChoosePushNotificationContentTemplateResponse.java @@ -35,7 +35,7 @@ ChoosePushNotificationContentTemplateResponse.JSON_PROPERTY_NAME }) @JsonTypeName("choosePushNotificationContentTemplateResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ChoosePushNotificationContentTemplateResponse { public static final String JSON_PROPERTY_NAME = "name"; private String name; @@ -52,7 +52,7 @@ public ChoosePushNotificationContentTemplateResponse name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToData.java b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToData.java index 35436f9f..20363ba0 100644 --- a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToData.java +++ b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToData.java @@ -40,7 +40,7 @@ ChooseWhichEventsToSubscribeToData.JSON_PROPERTY_ENABLED_EVENTS }) @JsonTypeName("chooseWhichEventsToSubscribeToData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ChooseWhichEventsToSubscribeToData { public static final String JSON_PROPERTY_ENABLED = "enabled"; private Boolean enabled; @@ -66,7 +66,7 @@ public ChooseWhichEventsToSubscribeToData enabled(Boolean enabled) { * Determines whether webhooks are turned on in your Sendbird application or not. (Default: false) * @return enabled **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether webhooks are turned on in your Sendbird application or not. (Default: false)") @JsonProperty(JSON_PROPERTY_ENABLED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -92,7 +92,7 @@ public ChooseWhichEventsToSubscribeToData url(String url) { * Specifies the URL of your webhook server to receive payloads for events. * @return url **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of your webhook server to receive payloads for events.") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -118,7 +118,7 @@ public ChooseWhichEventsToSubscribeToData includeMembers(Boolean includeMembers) * Determines whether to include the information on the members of group channels in payloads. (Default: false) * @return includeMembers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to include the information on the members of group channels in payloads. (Default: false)") @JsonProperty(JSON_PROPERTY_INCLUDE_MEMBERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public ChooseWhichEventsToSubscribeToData addEnabledEventsItem(String enabledEve * Specifies an array of one or more [events](#2-webhook-events) for your webhook server to subscribe to. If set to an asterisk () only, the server will subscribe to all supported events. If set to an empty array, the server will unsubscribe from all (which indicates turning off webhooks). * @return enabledEvents **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more [events](#2-webhook-events) for your webhook server to subscribe to. If set to an asterisk () only, the server will subscribe to all supported events. If set to an empty array, the server will unsubscribe from all (which indicates turning off webhooks).") @JsonProperty(JSON_PROPERTY_ENABLED_EVENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponse.java b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponse.java index b79e63a5..16ded871 100644 --- a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponse.java +++ b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponse.java @@ -36,7 +36,7 @@ ChooseWhichEventsToSubscribeToResponse.JSON_PROPERTY_WEBHOOK }) @JsonTypeName("chooseWhichEventsToSubscribeToResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ChooseWhichEventsToSubscribeToResponse { public static final String JSON_PROPERTY_WEBHOOK = "webhook"; private ChooseWhichEventsToSubscribeToResponseWebhook webhook; @@ -53,7 +53,7 @@ public ChooseWhichEventsToSubscribeToResponse webhook(ChooseWhichEventsToSubscri * Get webhook * @return webhook **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEBHOOK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponseWebhook.java b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponseWebhook.java index 0be4bb3b..dd09ac42 100644 --- a/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponseWebhook.java +++ b/src/main/java/org/openapitools/client/model/ChooseWhichEventsToSubscribeToResponseWebhook.java @@ -41,7 +41,7 @@ ChooseWhichEventsToSubscribeToResponseWebhook.JSON_PROPERTY_INCLUDE_UNREAD_COUNT }) @JsonTypeName("chooseWhichEventsToSubscribeToResponse_webhook") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ChooseWhichEventsToSubscribeToResponseWebhook { public static final String JSON_PROPERTY_ENABLED = "enabled"; private Boolean enabled; @@ -70,7 +70,7 @@ public ChooseWhichEventsToSubscribeToResponseWebhook enabled(Boolean enabled) { * Get enabled * @return enabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,7 +96,7 @@ public ChooseWhichEventsToSubscribeToResponseWebhook url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -122,7 +122,7 @@ public ChooseWhichEventsToSubscribeToResponseWebhook includeMembers(Boolean incl * Get includeMembers * @return includeMembers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_MEMBERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -156,7 +156,7 @@ public ChooseWhichEventsToSubscribeToResponseWebhook addEnabledEventsItem(String * Get enabledEvents * @return enabledEvents **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLED_EVENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -182,7 +182,7 @@ public ChooseWhichEventsToSubscribeToResponseWebhook includeUnreadCount(Boolean * Get includeUnreadCount * @return includeUnreadCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_UNREAD_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ConfigureAutoEventData.java b/src/main/java/org/openapitools/client/model/ConfigureAutoEventData.java index 065bbd31..65de935d 100644 --- a/src/main/java/org/openapitools/client/model/ConfigureAutoEventData.java +++ b/src/main/java/org/openapitools/client/model/ConfigureAutoEventData.java @@ -36,7 +36,7 @@ ConfigureAutoEventData.JSON_PROPERTY_AUTO_EVENT_MESSAGE }) @JsonTypeName("configureAutoEventData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ConfigureAutoEventData { public static final String JSON_PROPERTY_AUTO_EVENT_MESSAGE = "auto_event_message"; private ConfigureAutoEventDataAutoEventMessage autoEventMessage; @@ -53,7 +53,7 @@ public ConfigureAutoEventData autoEventMessage(ConfigureAutoEventDataAutoEventMe * Get autoEventMessage * @return autoEventMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_EVENT_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ConfigureAutoEventDataAutoEventMessage.java b/src/main/java/org/openapitools/client/model/ConfigureAutoEventDataAutoEventMessage.java index 7e3c0a5f..28d3d1bf 100644 --- a/src/main/java/org/openapitools/client/model/ConfigureAutoEventDataAutoEventMessage.java +++ b/src/main/java/org/openapitools/client/model/ConfigureAutoEventDataAutoEventMessage.java @@ -38,7 +38,7 @@ ConfigureAutoEventDataAutoEventMessage.JSON_PROPERTY_CHANNEL_CHANGE }) @JsonTypeName("configureAutoEventData_auto_event_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ConfigureAutoEventDataAutoEventMessage { public static final String JSON_PROPERTY_USER_LEAVE = "user_leave"; private Object userLeave; @@ -64,7 +64,7 @@ public ConfigureAutoEventDataAutoEventMessage userLeave(Object userLeave) { * Get userLeave * @return userLeave **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_LEAVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,7 +90,7 @@ public ConfigureAutoEventDataAutoEventMessage userJoin(Object userJoin) { * Get userJoin * @return userJoin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_JOIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public ConfigureAutoEventDataAutoEventMessage channelCreate(Object channelCreate * Get channelCreate * @return channelCreate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_CREATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public ConfigureAutoEventDataAutoEventMessage channelChange(Object channelChange * Get channelChange * @return channelChange **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_CHANGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateBotData.java b/src/main/java/org/openapitools/client/model/CreateBotData.java index 9ead2395..cf42a010 100644 --- a/src/main/java/org/openapitools/client/model/CreateBotData.java +++ b/src/main/java/org/openapitools/client/model/CreateBotData.java @@ -43,7 +43,7 @@ CreateBotData.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("createBotData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateBotData { public static final String JSON_PROPERTY_BOT_USERID = "bot_userid"; private String botUserid; @@ -84,7 +84,7 @@ public CreateBotData botUserid(String botUserid) { * Specifies the unique ID of the bot. The length is limited to 80 characters. * @return botUserid **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the bot. The length is limited to 80 characters.") @JsonProperty(JSON_PROPERTY_BOT_USERID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -110,7 +110,7 @@ public CreateBotData botNickname(String botNickname) { * Specifies the bot's nickname. The length is limited to 80 characters. * @return botNickname **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the bot's nickname. The length is limited to 80 characters.") @JsonProperty(JSON_PROPERTY_BOT_NICKNAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -136,7 +136,7 @@ public CreateBotData botProfileUrl(String botProfileUrl) { * Specifies the URL of the bot's profile image. The size is limited to 2,048 characters. * @return botProfileUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the bot's profile image. The size is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_BOT_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -162,7 +162,7 @@ public CreateBotData botType(String botType) { * Specifies the type of the bot that you can specify for categorization. The length is limited to 128 characters. * @return botType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the bot that you can specify for categorization. The length is limited to 128 characters.") @JsonProperty(JSON_PROPERTY_BOT_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -188,7 +188,7 @@ public CreateBotData botCallbackUrl(String botCallbackUrl) { * Specifies the server URL where bot is located to receive all events, requests, and data forwarded from an application. For security reasons, it is highly recommended that you use an SSL server. The length is limited to 1,024 characters. * @return botCallbackUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the server URL where bot is located to receive all events, requests, and data forwarded from an application. For security reasons, it is highly recommended that you use an SSL server. The length is limited to 1,024 characters.") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -214,7 +214,7 @@ public CreateBotData isPrivacyMode(Boolean isPrivacyMode) { * In the channels of where the bot is a member, determines whether to only forward the messages with the specific conditions to the bot or forword all messages to the bot, for privacy concerns. If set to true, only messages that start with a '/' or mention the bot_userid are forwarded to the bot. If set to false, all messages are forwarded. * @return isPrivacyMode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "In the channels of where the bot is a member, determines whether to only forward the messages with the specific conditions to the bot or forword all messages to the bot, for privacy concerns. If set to true, only messages that start with a '/' or mention the bot_userid are forwarded to the bot. If set to false, all messages are forwarded.") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -240,7 +240,7 @@ public CreateBotData enableMarkAsRead(Boolean enableMarkAsRead) { * Determines whether to mark the bot's message as read upon sending it. (Default: true) * @return enableMarkAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to mark the bot's message as read upon sending it. (Default: true)") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -266,7 +266,7 @@ public CreateBotData showMember(Boolean showMember) { * Determines whether to include information about the members of each channel in a callback response. (Default: false) * @return showMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to include information about the members of each channel in a callback response. (Default: false)") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -292,7 +292,7 @@ public CreateBotData channelInvitationPreference(Integer channelInvitationPrefer * Get channelInvitationPreference * @return channelInvitationPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateBotResponse.java b/src/main/java/org/openapitools/client/model/CreateBotResponse.java index 4aef08b8..01419a0e 100644 --- a/src/main/java/org/openapitools/client/model/CreateBotResponse.java +++ b/src/main/java/org/openapitools/client/model/CreateBotResponse.java @@ -42,7 +42,7 @@ CreateBotResponse.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("createBotResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateBotResponse { public static final String JSON_PROPERTY_BOT = "bot"; private CreateBotResponseBot bot; @@ -74,7 +74,7 @@ public CreateBotResponse bot(CreateBotResponseBot bot) { * Get bot * @return bot **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,7 +100,7 @@ public CreateBotResponse botCallbackUrl(String botCallbackUrl) { * Get botCallbackUrl * @return botCallbackUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public CreateBotResponse enableMarkAsRead(Boolean enableMarkAsRead) { * Get enableMarkAsRead * @return enableMarkAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public CreateBotResponse isPrivacyMode(Boolean isPrivacyMode) { * Get isPrivacyMode * @return isPrivacyMode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public CreateBotResponse showMember(Boolean showMember) { * Get showMember * @return showMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public CreateBotResponse channelInvitationPreference(BigDecimal channelInvitatio * Get channelInvitationPreference * @return channelInvitationPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateBotResponseBot.java b/src/main/java/org/openapitools/client/model/CreateBotResponseBot.java index 353dd196..7c958941 100644 --- a/src/main/java/org/openapitools/client/model/CreateBotResponseBot.java +++ b/src/main/java/org/openapitools/client/model/CreateBotResponseBot.java @@ -40,7 +40,7 @@ CreateBotResponseBot.JSON_PROPERTY_BOT_METADATA }) @JsonTypeName("createBotResponse_bot") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateBotResponseBot { public static final String JSON_PROPERTY_BOT_TOKEN = "bot_token"; private String botToken; @@ -72,7 +72,7 @@ public CreateBotResponseBot botToken(String botToken) { * Get botToken * @return botToken **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public CreateBotResponseBot botProfileUrl(String botProfileUrl) { * Get botProfileUrl * @return botProfileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public CreateBotResponseBot botUserid(String botUserid) { * Get botUserid * @return botUserid **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_USERID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,7 +150,7 @@ public CreateBotResponseBot botNickname(String botNickname) { * Get botNickname * @return botNickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,7 +176,7 @@ public CreateBotResponseBot botType(String botType) { * Get botType * @return botType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,7 +202,7 @@ public CreateBotResponseBot botMetadata(Object botMetadata) { * Get botMetadata * @return botMetadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateChannelMetacounterData.java b/src/main/java/org/openapitools/client/model/CreateChannelMetacounterData.java index a0e85c8e..e5f9a0d5 100644 --- a/src/main/java/org/openapitools/client/model/CreateChannelMetacounterData.java +++ b/src/main/java/org/openapitools/client/model/CreateChannelMetacounterData.java @@ -37,7 +37,7 @@ CreateChannelMetacounterData.JSON_PROPERTY_METACOUNTER }) @JsonTypeName("createChannelMetacounterData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateChannelMetacounterData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -60,7 +60,7 @@ public CreateChannelMetacounterData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public CreateChannelMetacounterData channelUrl(String channelUrl) { * Specifies the URL of the channel to store the metacounter in. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to store the metacounter in.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public CreateChannelMetacounterData metacounter(String metacounter) { * Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be an integer. This property can have up to 5 items. * @return metacounter **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be an integer. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METACOUNTER) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/CreateChannelMetadataData.java b/src/main/java/org/openapitools/client/model/CreateChannelMetadataData.java index 0eeaabd3..ae330eda 100644 --- a/src/main/java/org/openapitools/client/model/CreateChannelMetadataData.java +++ b/src/main/java/org/openapitools/client/model/CreateChannelMetadataData.java @@ -38,7 +38,7 @@ CreateChannelMetadataData.JSON_PROPERTY_INCLUDE_TS }) @JsonTypeName("createChannelMetadataData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateChannelMetadataData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -64,7 +64,7 @@ public CreateChannelMetadataData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public CreateChannelMetadataData channelUrl(String channelUrl) { * Specifies the URL of the channel to store the metadata in. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to store the metadata in.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public CreateChannelMetadataData metadata(Object metadata) { * Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items. * @return metadata **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public CreateChannelMetadataData includeTs(Boolean includeTs) { * Determines whether to include the timestamp of when a metadata has been created in the response. (Default: false) * @return includeTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to include the timestamp of when a metadata has been created in the response. (Default: false)") @JsonProperty(JSON_PROPERTY_INCLUDE_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateChannelMetadataResponse.java b/src/main/java/org/openapitools/client/model/CreateChannelMetadataResponse.java index 7c68b51a..d6749890 100644 --- a/src/main/java/org/openapitools/client/model/CreateChannelMetadataResponse.java +++ b/src/main/java/org/openapitools/client/model/CreateChannelMetadataResponse.java @@ -40,7 +40,7 @@ CreateChannelMetadataResponse.JSON_PROPERTY_INCLUDE_TS }) @JsonTypeName("createChannelMetadataResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateChannelMetadataResponse { public static final String JSON_PROPERTY_METADATA = "metadata"; private Map metadata = null; @@ -68,7 +68,7 @@ public CreateChannelMetadataResponse putMetadataItem(String key, String metadata * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public CreateChannelMetadataResponse includeTs(BigDecimal includeTs) { * Get includeTs * @return includeTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateUserData.java b/src/main/java/org/openapitools/client/model/CreateUserData.java index 7d6cd051..581fe961 100644 --- a/src/main/java/org/openapitools/client/model/CreateUserData.java +++ b/src/main/java/org/openapitools/client/model/CreateUserData.java @@ -44,7 +44,7 @@ CreateUserData.JSON_PROPERTY_METADATA }) @JsonTypeName("createUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateUserData { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -79,7 +79,7 @@ public CreateUserData userId(String userId) { * Specifies a user's unique ID, which is used to sign into the Sendbird service. The length is limited to 80 characters.<br /><br /> Do not use PII (Personally Identifiable Information) of your service, such as user email address, legal name or phone number. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a user's unique ID, which is used to sign into the Sendbird service. The length is limited to 80 characters.

Do not use PII (Personally Identifiable Information) of your service, such as user email address, legal name or phone number.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -105,7 +105,7 @@ public CreateUserData nickname(String nickname) { * Specifies a nickname for a new user. The length is limited to 80 characters. * @return nickname **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a nickname for a new user. The length is limited to 80 characters.") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -131,7 +131,7 @@ public CreateUserData profileUrl(String profileUrl) { * Specifies the URL of the user's profile image. If left empty, no profile image is set for the user. The length is limited to 2,048 characters.<br /><br /> The [domain filter](/docs/chat/v3/platform-api/guides/filter-and-moderation#2-domain-filter) filters out the request if the value of this property matches the filter's domain set. * @return profileUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the user's profile image. If left empty, no profile image is set for the user. The length is limited to 2,048 characters.

The [domain filter](/docs/chat/v3/platform-api/guides/filter-and-moderation#2-domain-filter) filters out the request if the value of this property matches the filter's domain set.") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -157,7 +157,7 @@ public CreateUserData profileFile(File profileFile) { * Uploads the file of the user's profile image. An acceptable image is limited to `JPG` (.jpg), `JPEG` (.jpeg), or `PNG` (.png) file of up to 25 MB. * @return profileFile **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Uploads the file of the user's profile image. An acceptable image is limited to `JPG` (.jpg), `JPEG` (.jpeg), or `PNG` (.png) file of up to 25 MB.") @JsonProperty(JSON_PROPERTY_PROFILE_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -183,7 +183,7 @@ public CreateUserData issueAccessToken(Boolean issueAccessToken) { * Determines whether to create an access token for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, an access token is not required when the user logs in. (Default: false) * @return issueAccessToken **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to create an access token for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, an access token is not required when the user logs in. (Default: false)") @JsonProperty(JSON_PROPERTY_ISSUE_ACCESS_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -217,7 +217,7 @@ public CreateUserData addDiscoveryKeysItem(String discoveryKeysItem) { * Specifies an array of unique keys of the user which is provided to Sendbird server for discovering friends. By using the keys, the server can identify and match the user with other users. * @return discoveryKeys **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of unique keys of the user which is provided to Sendbird server for discovering friends. By using the keys, the server can identify and match the user with other users.") @JsonProperty(JSON_PROPERTY_DISCOVERY_KEYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -243,7 +243,7 @@ public CreateUserData metadata(Object metadata) { * Specifies a `JSON` object to store key-value items for additional user information such as phone number, email or a long description of the user. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items. * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a `JSON` object to store key-value items for additional user information such as phone number, email or a long description of the user. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateUserMetadataData.java b/src/main/java/org/openapitools/client/model/CreateUserMetadataData.java index 38b1b1ea..013f8314 100644 --- a/src/main/java/org/openapitools/client/model/CreateUserMetadataData.java +++ b/src/main/java/org/openapitools/client/model/CreateUserMetadataData.java @@ -35,7 +35,7 @@ CreateUserMetadataData.JSON_PROPERTY_METADATA }) @JsonTypeName("createUserMetadataData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateUserMetadataData { public static final String JSON_PROPERTY_METADATA = "metadata"; private Object metadata; @@ -52,7 +52,7 @@ public CreateUserMetadataData metadata(Object metadata) { * Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items. * @return metadata **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/CreateUserMetadataResponse.java b/src/main/java/org/openapitools/client/model/CreateUserMetadataResponse.java index fdbf2d75..e074010d 100644 --- a/src/main/java/org/openapitools/client/model/CreateUserMetadataResponse.java +++ b/src/main/java/org/openapitools/client/model/CreateUserMetadataResponse.java @@ -35,7 +35,7 @@ CreateUserMetadataResponse.JSON_PROPERTY_ANY_OF }) @JsonTypeName("createUserMetadataResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateUserMetadataResponse { public static final String JSON_PROPERTY_ANY_OF = "anyOf"; private String anyOf; @@ -52,7 +52,7 @@ public CreateUserMetadataResponse anyOf(String anyOf) { * Get anyOf * @return anyOf **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANY_OF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateUserTokenData.java b/src/main/java/org/openapitools/client/model/CreateUserTokenData.java index e5276788..62dde380 100644 --- a/src/main/java/org/openapitools/client/model/CreateUserTokenData.java +++ b/src/main/java/org/openapitools/client/model/CreateUserTokenData.java @@ -36,7 +36,7 @@ CreateUserTokenData.JSON_PROPERTY_EXPIRES_AT }) @JsonTypeName("createUserTokenData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateUserTokenData { public static final String JSON_PROPERTY_EXPIRES_AT = "expires_at"; private BigDecimal expiresAt; @@ -53,7 +53,7 @@ public CreateUserTokenData expiresAt(BigDecimal expiresAt) { * Specifies the expiration time of the new session token in Unix milliseconds format. By default, the expiration time of a session token is seven days from the timestamp when the token was issued. * @return expiresAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the expiration time of the new session token in Unix milliseconds format. By default, the expiration time of a session token is seven days from the timestamp when the token was issued.") @JsonProperty(JSON_PROPERTY_EXPIRES_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CreateUserTokenResponse.java b/src/main/java/org/openapitools/client/model/CreateUserTokenResponse.java index c8e639e3..aa471508 100644 --- a/src/main/java/org/openapitools/client/model/CreateUserTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/CreateUserTokenResponse.java @@ -37,7 +37,7 @@ CreateUserTokenResponse.JSON_PROPERTY_EXPIRES_AT }) @JsonTypeName("createUserTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CreateUserTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -57,7 +57,7 @@ public CreateUserTokenResponse token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public CreateUserTokenResponse expiresAt(BigDecimal expiresAt) { * Get expiresAt * @return expiresAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXPIRES_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/CustomTypeListBannedUsersResponse.java b/src/main/java/org/openapitools/client/model/CustomTypeListBannedUsersResponse.java index dea1fe72..87cadf76 100644 --- a/src/main/java/org/openapitools/client/model/CustomTypeListBannedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/CustomTypeListBannedUsersResponse.java @@ -39,7 +39,7 @@ CustomTypeListBannedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("customTypeListBannedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class CustomTypeListBannedUsersResponse { public static final String JSON_PROPERTY_BANNED_LIST = "banned_list"; private List bannedList = null; @@ -67,7 +67,7 @@ public CustomTypeListBannedUsersResponse addBannedListItem(OcListBannedUsersResp * Get bannedList * @return bannedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BANNED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public CustomTypeListBannedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/DeleteAllowedIpsFromWhitelistResponse.java b/src/main/java/org/openapitools/client/model/DeleteAllowedIpsFromWhitelistResponse.java index c73840bd..700d7dde 100644 --- a/src/main/java/org/openapitools/client/model/DeleteAllowedIpsFromWhitelistResponse.java +++ b/src/main/java/org/openapitools/client/model/DeleteAllowedIpsFromWhitelistResponse.java @@ -37,7 +37,7 @@ DeleteAllowedIpsFromWhitelistResponse.JSON_PROPERTY_IP_WHITELIST_ADDRESSES }) @JsonTypeName("deleteAllowedIpsFromWhitelistResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class DeleteAllowedIpsFromWhitelistResponse { public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses"; private List ipWhitelistAddresses = null; @@ -62,7 +62,7 @@ public DeleteAllowedIpsFromWhitelistResponse addIpWhitelistAddressesItem(String * Get ipWhitelistAddresses * @return ipWhitelistAddresses **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IP_WHITELIST_ADDRESSES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/DeleteApnsCertificateByIdResponse.java b/src/main/java/org/openapitools/client/model/DeleteApnsCertificateByIdResponse.java index 9f51061a..e79dc120 100644 --- a/src/main/java/org/openapitools/client/model/DeleteApnsCertificateByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/DeleteApnsCertificateByIdResponse.java @@ -37,7 +37,7 @@ DeleteApnsCertificateByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("deleteApnsCertificateByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class DeleteApnsCertificateByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -62,7 +62,7 @@ public DeleteApnsCertificateByIdResponse addPushConfigurationsItem(String pushCo * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/EnableReactionsData.java b/src/main/java/org/openapitools/client/model/EnableReactionsData.java index cc34f899..3cdd5e25 100644 --- a/src/main/java/org/openapitools/client/model/EnableReactionsData.java +++ b/src/main/java/org/openapitools/client/model/EnableReactionsData.java @@ -35,7 +35,7 @@ EnableReactionsData.JSON_PROPERTY_ENABLED }) @JsonTypeName("enableReactionsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class EnableReactionsData { public static final String JSON_PROPERTY_ENABLED = "enabled"; private Boolean enabled; @@ -52,7 +52,7 @@ public EnableReactionsData enabled(Boolean enabled) { * Determines whether to turn on the message reaction feature. (Default: false) * @return enabled **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to turn on the message reaction feature. (Default: false)") @JsonProperty(JSON_PROPERTY_ENABLED) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/EnableReactionsResponse.java b/src/main/java/org/openapitools/client/model/EnableReactionsResponse.java index 56f2584c..8814b9fb 100644 --- a/src/main/java/org/openapitools/client/model/EnableReactionsResponse.java +++ b/src/main/java/org/openapitools/client/model/EnableReactionsResponse.java @@ -35,7 +35,7 @@ EnableReactionsResponse.JSON_PROPERTY_REACTIONS }) @JsonTypeName("enableReactionsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class EnableReactionsResponse { public static final String JSON_PROPERTY_REACTIONS = "reactions"; private Boolean reactions; @@ -52,7 +52,7 @@ public EnableReactionsResponse reactions(Boolean reactions) { * Get reactions * @return reactions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REACTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/Function.java b/src/main/java/org/openapitools/client/model/Function.java index 275911e3..db235eb3 100644 --- a/src/main/java/org/openapitools/client/model/Function.java +++ b/src/main/java/org/openapitools/client/model/Function.java @@ -42,7 +42,7 @@ Function.JSON_PROPERTY_LENGTH, Function.JSON_PROPERTY_PROTOTYPE }) -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class Function { public static final String JSON_PROPERTY_ARGUMENTS = "arguments"; private JsonNullable arguments = JsonNullable.of(null); @@ -68,7 +68,7 @@ public Function arguments(Object arguments) { * Get arguments * @return arguments **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -102,7 +102,7 @@ public Function caller(Function caller) { * Get caller * @return caller **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CALLER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public Function length(BigDecimal length) { * Get length * @return length **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LENGTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public Function prototype(Object prototype) { * Get prototype * @return prototype **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore diff --git a/src/main/java/org/openapitools/client/model/GcAcceptInvitationData.java b/src/main/java/org/openapitools/client/model/GcAcceptInvitationData.java index b3467e9f..50b7da54 100644 --- a/src/main/java/org/openapitools/client/model/GcAcceptInvitationData.java +++ b/src/main/java/org/openapitools/client/model/GcAcceptInvitationData.java @@ -37,7 +37,7 @@ GcAcceptInvitationData.JSON_PROPERTY_ACCESS_CODE }) @JsonTypeName("gcAcceptInvitationData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcAcceptInvitationData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -60,7 +60,7 @@ public GcAcceptInvitationData channelUrl(String channelUrl) { * Specifies the URL of the private group channel to join through accepting an invitation. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the private group channel to join through accepting an invitation.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public GcAcceptInvitationData userId(String userId) { * Specifies the unique ID of the user to accept an invitation to join the private group channel. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to accept an invitation to join the private group channel.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public GcAcceptInvitationData accessCode(String accessCode) { * This property should be specified if the private group channel to join requires an access code to the invited users, which means that the is_access_code_required property of the channel resource is true. * @return accessCode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "This property should be specified if the private group channel to join requires an access code to the invited users, which means that the is_access_code_required property of the channel resource is true.") @JsonProperty(JSON_PROPERTY_ACCESS_CODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcBanUserData.java b/src/main/java/org/openapitools/client/model/GcBanUserData.java index 2fed4dc8..714579fa 100644 --- a/src/main/java/org/openapitools/client/model/GcBanUserData.java +++ b/src/main/java/org/openapitools/client/model/GcBanUserData.java @@ -39,7 +39,7 @@ GcBanUserData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcBanUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcBanUserData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -68,7 +68,7 @@ public GcBanUserData channelUrl(String channelUrl) { * Specifies the URL of the channel where to ban a user. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel where to ban a user.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,7 +94,7 @@ public GcBanUserData userId(String userId) { * Specifies the unique ID of the user to ban. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to ban.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,7 +120,7 @@ public GcBanUserData agentId(String agentId) { * Specifies the ID of the agent (operator) who bans the user. * @return agentId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the agent (operator) who bans the user.") @JsonProperty(JSON_PROPERTY_AGENT_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public GcBanUserData seconds(Integer seconds) { * Specifies the ban duration. If set to -1, the user will be banned permanently (10 years, technically). (Default: -1) * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ban duration. If set to -1, the user will be banned permanently (10 years, technically). (Default: -1)") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,7 +172,7 @@ public GcBanUserData description(String description) { * Specifies a reason for the banning. The length is limited to 250 characters. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a reason for the banning. The length is limited to 250 characters.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcBanUserResponse.java b/src/main/java/org/openapitools/client/model/GcBanUserResponse.java index c6233f53..2c683510 100644 --- a/src/main/java/org/openapitools/client/model/GcBanUserResponse.java +++ b/src/main/java/org/openapitools/client/model/GcBanUserResponse.java @@ -47,7 +47,7 @@ GcBanUserResponse.JSON_PROPERTY_USER_ID }) @JsonTypeName("gcBanUserResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcBanUserResponse { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -91,7 +91,7 @@ public GcBanUserResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public GcBanUserResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public GcBanUserResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,7 +169,7 @@ public GcBanUserResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -195,7 +195,7 @@ public GcBanUserResponse metadata(OcDeleteChannelByUrl200Response metadata) { * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -221,7 +221,7 @@ public GcBanUserResponse nextUrl(String nextUrl) { * Get nextUrl * @return nextUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,7 +247,7 @@ public GcBanUserResponse nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -273,7 +273,7 @@ public GcBanUserResponse profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -299,7 +299,7 @@ public GcBanUserResponse requireAuthForProfileImage(Boolean requireAuthForProfil * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -325,7 +325,7 @@ public GcBanUserResponse userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcCheckIfMemberByIdResponse.java b/src/main/java/org/openapitools/client/model/GcCheckIfMemberByIdResponse.java index 270496b9..982578c2 100644 --- a/src/main/java/org/openapitools/client/model/GcCheckIfMemberByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GcCheckIfMemberByIdResponse.java @@ -36,7 +36,7 @@ GcCheckIfMemberByIdResponse.JSON_PROPERTY_STATE }) @JsonTypeName("gcCheckIfMemberByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcCheckIfMemberByIdResponse { public static final String JSON_PROPERTY_IS_MEMBER = "is_member"; private Boolean isMember; @@ -56,7 +56,7 @@ public GcCheckIfMemberByIdResponse isMember(Boolean isMember) { * Get isMember * @return isMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,7 +82,7 @@ public GcCheckIfMemberByIdResponse state(String state) { * Get state * @return state **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcCreateChannelData.java b/src/main/java/org/openapitools/client/model/GcCreateChannelData.java index a55104b5..aa00cf76 100644 --- a/src/main/java/org/openapitools/client/model/GcCreateChannelData.java +++ b/src/main/java/org/openapitools/client/model/GcCreateChannelData.java @@ -57,7 +57,7 @@ GcCreateChannelData.JSON_PROPERTY_BLOCK_SDK_USER_CHANNEL_JOIN }) @JsonTypeName("gcCreateChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcCreateChannelData { public static final String JSON_PROPERTY_USER_IDS = "user_ids"; private List userIds = new ArrayList<>(); @@ -133,7 +133,7 @@ public GcCreateChannelData addUserIdsItem(String userIdsItem) { * Specifies an array of one or more IDs of users to invite to the channel. The maximum number of users to be invited at once is 100. The users below and this property can be used interchangeably. * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of users to invite to the channel. The maximum number of users to be invited at once is 100. The users below and this property can be used interchangeably.") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -167,7 +167,7 @@ public GcCreateChannelData addUsersItem(SendBirdUser usersItem) { * Specifies an array of one or more IDs of users to invite to the channel. The maximum number of users to be invited at once is 100. The user_ids above and this property can be used interchangeably. * @return users **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of users to invite to the channel. The maximum number of users to be invited at once is 100. The user_ids above and this property can be used interchangeably.") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,7 +193,7 @@ public GcCreateChannelData name(String name) { * Specifies the name of the channel, or the channel topic. The length is limited to 191 characters. (Default: group channel) * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of the channel, or the channel topic. The length is limited to 191 characters. (Default: group channel)") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -219,7 +219,7 @@ public GcCreateChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel. Only numbers, characters, and underscores are allowed. The length is 4 to 100 characters, inclusive. If not specified, a URL is automatically generated. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel. Only numbers, characters, and underscores are allowed. The length is 4 to 100 characters, inclusive. If not specified, a URL is automatically generated.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -245,7 +245,7 @@ public GcCreateChannelData coverUrl(String coverUrl) { * Specifies the URL of the cover image for the channel. The length is limited to 2,048 characters. * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the cover image for the channel. The length is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,7 +271,7 @@ public GcCreateChannelData coverFile(File coverFile) { * Uploads the cover image file for the channel. * @return coverFile **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Uploads the cover image file for the channel.") @JsonProperty(JSON_PROPERTY_COVER_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,7 +297,7 @@ public GcCreateChannelData customType(String customType) { * Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -323,7 +323,7 @@ public GcCreateChannelData data(String data) { * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -349,7 +349,7 @@ public GcCreateChannelData isDistinct(Boolean isDistinct) { * Determines whether to reuse an existing channel or create a new channel. If set to true, returns a channel with the same users in the user_ids or users property or creates a new channel if no match is found. Sendbird server can also use the custom channel type in the custom_type property if specified along with the users to return the corresponding channel. If set to false, Sendbird server always creates a new channel with a combination of the users as well as the channel custom type if specified. (Default: false)<br /><br /> Under this property, Sendbird server does not distinguish channels based on other properties such as channel URL or channel name. * @return isDistinct **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to reuse an existing channel or create a new channel. If set to true, returns a channel with the same users in the user_ids or users property or creates a new channel if no match is found. Sendbird server can also use the custom channel type in the custom_type property if specified along with the users to return the corresponding channel. If set to false, Sendbird server always creates a new channel with a combination of the users as well as the channel custom type if specified. (Default: false)

Under this property, Sendbird server does not distinguish channels based on other properties such as channel URL or channel name.") @JsonProperty(JSON_PROPERTY_IS_DISTINCT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -375,7 +375,7 @@ public GcCreateChannelData isPublic(Boolean isPublic) { * Determines whether to allow a user to join the channel without an invitation. (Default: false) * @return isPublic **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow a user to join the channel without an invitation. (Default: false)") @JsonProperty(JSON_PROPERTY_IS_PUBLIC) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,7 +401,7 @@ public GcCreateChannelData isSuper(Boolean isSuper) { * Determines whether to allow the channel to accommodate more than 2,000 members. (Default: false) <br/><br/> Supergroup channels are not supported with the is_distinct property and the property is false by default. * @return isSuper **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow the channel to accommodate more than 2,000 members. (Default: false)

Supergroup channels are not supported with the is_distinct property and the property is false by default.") @JsonProperty(JSON_PROPERTY_IS_SUPER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -427,7 +427,7 @@ public GcCreateChannelData isEphemeral(Boolean isEphemeral) { * Determines whether to preserve the messages in the channel for the purpose of retrieving chat history. (Default: false) * @return isEphemeral **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to preserve the messages in the channel for the purpose of retrieving chat history. (Default: false)") @JsonProperty(JSON_PROPERTY_IS_EPHEMERAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,7 +453,7 @@ public GcCreateChannelData accessCode(String accessCode) { * This parameter can only be used when the channel operator creates a public group channel. They can set an access code for the corresponding type of channel. The channel then requires the specified access code to a user who attempts to join. If specified, the is_access_code_required property of the channel resource is set to true. * @return accessCode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "This parameter can only be used when the channel operator creates a public group channel. They can set an access code for the corresponding type of channel. The channel then requires the specified access code to a user who attempts to join. If specified, the is_access_code_required property of the channel resource is set to true.") @JsonProperty(JSON_PROPERTY_ACCESS_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -479,7 +479,7 @@ public GcCreateChannelData inviterId(String inviterId) { * Specifies the ID of the user who has invited other users as members of the channel. The inviter is not automatically registered to the channel as a member, so you should specify the ID of the inviter in the user_ids property below if needed. * @return inviterId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the ID of the user who has invited other users as members of the channel. The inviter is not automatically registered to the channel as a member, so you should specify the ID of the inviter in the user_ids property below if needed.") @JsonProperty(JSON_PROPERTY_INVITER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -505,7 +505,7 @@ public GcCreateChannelData strict(Boolean strict) { * Determines whether to receive a `400111` error and cease channel creation when there is at least one non-existing user in the specified user_ids or users property above. If set to false, the channel will be created excluding the non-existing users without receiving the mentioned error. (Default: false) * @return strict **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to receive a `400111` error and cease channel creation when there is at least one non-existing user in the specified user_ids or users property above. If set to false, the channel will be created excluding the non-existing users without receiving the mentioned error. (Default: false)") @JsonProperty(JSON_PROPERTY_STRICT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -531,7 +531,7 @@ public GcCreateChannelData invitationStatus(Object invitationStatus) { * Specifies one or more key-value pair items which set the invitation status of each user invited to the channel. The key should be a user_id and the value should be their joining status. Acceptable values are joined, invited_by_friend, and invited_by_non_friend. (Default: joined) * @return invitationStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies one or more key-value pair items which set the invitation status of each user invited to the channel. The key should be a user_id and the value should be their joining status. Acceptable values are joined, invited_by_friend, and invited_by_non_friend. (Default: joined)") @JsonProperty(JSON_PROPERTY_INVITATION_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -557,7 +557,7 @@ public GcCreateChannelData hiddenStatus(Object hiddenStatus) { * Specifies one or more key-value pair items which set the channel's hidden status for each user. The key should be a user_id and the value should be their hidden status. Acceptable values are limited to the following:<br />- unhidden (default): the channel is included in when retrieving a list of group channels.<br />- hidden_allow_auto_unhide: the channel automatically gets unhidden when receiving a new message.<br />- hidden_prevent_auto_unhide: the channel keeps hidden though receiving a new message. * @return hiddenStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies one or more key-value pair items which set the channel's hidden status for each user. The key should be a user_id and the value should be their hidden status. Acceptable values are limited to the following:
- unhidden (default): the channel is included in when retrieving a list of group channels.
- hidden_allow_auto_unhide: the channel automatically gets unhidden when receiving a new message.
- hidden_prevent_auto_unhide: the channel keeps hidden though receiving a new message.") @JsonProperty(JSON_PROPERTY_HIDDEN_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -591,7 +591,7 @@ public GcCreateChannelData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more IDs of users to register as operators of the channel. You should also include these IDs in the user_ids property to invite them to the channel as members. They can delete any messages in the channel, and also view all messages without any filtering or throttling. The maximum allowed number of operators per channel is 100. * @return operatorIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of users to register as operators of the channel. You should also include these IDs in the user_ids property to invite them to the channel as members. They can delete any messages in the channel, and also view all messages without any filtering or throttling. The maximum allowed number of operators per channel is 100.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -617,7 +617,7 @@ public GcCreateChannelData blockSdkUserChannelJoin(Boolean blockSdkUserChannelJo * Determines whether to block users from joining the channel through the Chat SDK. This parameter can be used in order to restrict the ways for users to join the channel, and only using the [join a channel](#2-join-a-channel) action can add a user to the channel. (Default: false) * @return blockSdkUserChannelJoin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to block users from joining the channel through the Chat SDK. This parameter can be used in order to restrict the ways for users to join the channel, and only using the [join a channel](#2-join-a-channel) action can add a user to the channel. (Default: false)") @JsonProperty(JSON_PROPERTY_BLOCK_SDK_USER_CHANNEL_JOIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcDeclineInvitationData.java b/src/main/java/org/openapitools/client/model/GcDeclineInvitationData.java index 840c700c..eb911bb6 100644 --- a/src/main/java/org/openapitools/client/model/GcDeclineInvitationData.java +++ b/src/main/java/org/openapitools/client/model/GcDeclineInvitationData.java @@ -36,7 +36,7 @@ GcDeclineInvitationData.JSON_PROPERTY_USER_ID }) @JsonTypeName("gcDeclineInvitationData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcDeclineInvitationData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -56,7 +56,7 @@ public GcDeclineInvitationData channelUrl(String channelUrl) { * Specifies the URL of the private group channel to decline an invitation from. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the private group channel to decline an invitation from.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public GcDeclineInvitationData userId(String userId) { * Specifies the unique ID of the user to decline an invitation. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to decline an invitation.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcFreezeChannelData.java b/src/main/java/org/openapitools/client/model/GcFreezeChannelData.java index 27d30df7..fbbf2c11 100644 --- a/src/main/java/org/openapitools/client/model/GcFreezeChannelData.java +++ b/src/main/java/org/openapitools/client/model/GcFreezeChannelData.java @@ -36,7 +36,7 @@ GcFreezeChannelData.JSON_PROPERTY_FREEZE }) @JsonTypeName("gcFreezeChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcFreezeChannelData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -56,7 +56,7 @@ public GcFreezeChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel to freeze. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to freeze.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public GcFreezeChannelData freeze(Boolean freeze) { * Determines whether to freeze the channel. (Default: false) * @return freeze **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to freeze the channel. (Default: false)") @JsonProperty(JSON_PROPERTY_FREEZE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcHideOrArchiveChannelData.java b/src/main/java/org/openapitools/client/model/GcHideOrArchiveChannelData.java index 19f463e1..1ac193aa 100644 --- a/src/main/java/org/openapitools/client/model/GcHideOrArchiveChannelData.java +++ b/src/main/java/org/openapitools/client/model/GcHideOrArchiveChannelData.java @@ -39,7 +39,7 @@ GcHideOrArchiveChannelData.JSON_PROPERTY_HIDE_PREVIOUS_MESSAGES }) @JsonTypeName("gcHideOrArchiveChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcHideOrArchiveChannelData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -68,7 +68,7 @@ public GcHideOrArchiveChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel to hide or archive. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to hide or archive.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,7 +94,7 @@ public GcHideOrArchiveChannelData userId(String userId) { * Specifies the unique ID of the user whose channel will be hidden or archived from the list. This property is required when should_hide_all is set to false, which is the default value. However, when should_hide_all is set to true, this property isn't effective. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user whose channel will be hidden or archived from the list. This property is required when should_hide_all is set to false, which is the default value. However, when should_hide_all is set to true, this property isn't effective.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,7 +120,7 @@ public GcHideOrArchiveChannelData allowAutoUnhide(Boolean allowAutoUnhide) { * Determines the state and operating behavior of the channel in a channel list. If set to true, the channel is hidden from a user's channel list but it will reappear when there is a new message. If set to false, the channel is hidden from a user's channel list and it will remain hidden unless the value of the property changes to true through [unarchiving](#2-unhide-or-unarchive-a-channel). (Default: true)<br /><br /> When a user who has hidden the channel sends a message in that channel through the [Platform API](/docs/chat/v3/platform-api/guides/messages#2-send-a-message), the `allow_auto_unhide` property is changed to true, making the channel reappear in the channel list. * @return allowAutoUnhide **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines the state and operating behavior of the channel in a channel list. If set to true, the channel is hidden from a user's channel list but it will reappear when there is a new message. If set to false, the channel is hidden from a user's channel list and it will remain hidden unless the value of the property changes to true through [unarchiving](#2-unhide-or-unarchive-a-channel). (Default: true)

When a user who has hidden the channel sends a message in that channel through the [Platform API](/docs/chat/v3/platform-api/guides/messages#2-send-a-message), the `allow_auto_unhide` property is changed to true, making the channel reappear in the channel list.") @JsonProperty(JSON_PROPERTY_ALLOW_AUTO_UNHIDE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public GcHideOrArchiveChannelData shouldHideAll(Boolean shouldHideAll) { * Determines whether to make the specified channel disappear from the channel list of all channel members. When this is set to true, the user_id property isn't effective and doesn't need to be specified in the request. (Default: false) * @return shouldHideAll **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to make the specified channel disappear from the channel list of all channel members. When this is set to true, the user_id property isn't effective and doesn't need to be specified in the request. (Default: false)") @JsonProperty(JSON_PROPERTY_SHOULD_HIDE_ALL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,7 +172,7 @@ public GcHideOrArchiveChannelData hidePreviousMessages(Boolean hidePreviousMessa * When the channel gets appeared back in either the list of the user in the user_id property or the lists of all channel members (should_hide_all = true), determines whether to conceal the messages sent and received before hiding or archiving the channel. (Default: false)<br /><br /> This property is effective only when the value of the [global application settings resource](/docs/chat/v3/platform-api/guides/global-application-settings#-3-resource-representation)'s display_past_message property is false. * @return hidePreviousMessages **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "When the channel gets appeared back in either the list of the user in the user_id property or the lists of all channel members (should_hide_all = true), determines whether to conceal the messages sent and received before hiding or archiving the channel. (Default: false)

This property is effective only when the value of the [global application settings resource](/docs/chat/v3/platform-api/guides/global-application-settings#-3-resource-representation)'s display_past_message property is false.") @JsonProperty(JSON_PROPERTY_HIDE_PREVIOUS_MESSAGES) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcInviteAsMembersData.java b/src/main/java/org/openapitools/client/model/GcInviteAsMembersData.java index f253889b..e5aee210 100644 --- a/src/main/java/org/openapitools/client/model/GcInviteAsMembersData.java +++ b/src/main/java/org/openapitools/client/model/GcInviteAsMembersData.java @@ -41,7 +41,7 @@ GcInviteAsMembersData.JSON_PROPERTY_HIDDEN_STATUS }) @JsonTypeName("gcInviteAsMembersData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcInviteAsMembersData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -70,7 +70,7 @@ public GcInviteAsMembersData channelUrl(String channelUrl) { * Specifies the URL of the channel to invite into. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to invite into.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -101,7 +101,7 @@ public GcInviteAsMembersData addUserIdsItem(String userIdsItem) { * Specifies an array of one or more user IDs to invite into the channel. The maximum number of users to be invited at once is 100. The users can be used instead of this property. * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more user IDs to invite into the channel. The maximum number of users to be invited at once is 100. The users can be used instead of this property.") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -132,7 +132,7 @@ public GcInviteAsMembersData addUsersItem(String usersItem) { * Specifies a list of one or more `JSON` objects which contain the user_id property to invite into the channel. The maximum number of users to be invited at once is 100. The user_ids can be used instead of this property. * @return users **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a list of one or more `JSON` objects which contain the user_id property to invite into the channel. The maximum number of users to be invited at once is 100. The user_ids can be used instead of this property.") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -158,7 +158,7 @@ public GcInviteAsMembersData invitationStatus(Object invitationStatus) { * Specifies one or more key-value pair items which set the invitation status of each user invited to the channel. The key should be a user_id and the value should be their joining status. Acceptable values are joined, invited_by_friend, and invited_by_non_friend. (Default: joined) * @return invitationStatus **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies one or more key-value pair items which set the invitation status of each user invited to the channel. The key should be a user_id and the value should be their joining status. Acceptable values are joined, invited_by_friend, and invited_by_non_friend. (Default: joined)") @JsonProperty(JSON_PROPERTY_INVITATION_STATUS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -184,7 +184,7 @@ public GcInviteAsMembersData hiddenStatus(Object hiddenStatus) { * Specifies one or more key-value pair items which set the channel's hidden status for each user. The key should be a user_id and the value should be their hidden status. Acceptable values are limited to the following:<br />- unhidden (default): the channel is included in when retrieving a list of group channels.<br />- hidden_allow_auto_unhide: the channel automatically gets unhidden when receiving a new message.<br />- hidden_prevent_auto_unhide: the channel keeps hidden though receiving a new message. * @return hiddenStatus **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies one or more key-value pair items which set the channel's hidden status for each user. The key should be a user_id and the value should be their hidden status. Acceptable values are limited to the following:
- unhidden (default): the channel is included in when retrieving a list of group channels.
- hidden_allow_auto_unhide: the channel automatically gets unhidden when receiving a new message.
- hidden_prevent_auto_unhide: the channel keeps hidden though receiving a new message.") @JsonProperty(JSON_PROPERTY_HIDDEN_STATUS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcJoinChannelData.java b/src/main/java/org/openapitools/client/model/GcJoinChannelData.java index 77b19365..8b444522 100644 --- a/src/main/java/org/openapitools/client/model/GcJoinChannelData.java +++ b/src/main/java/org/openapitools/client/model/GcJoinChannelData.java @@ -37,7 +37,7 @@ GcJoinChannelData.JSON_PROPERTY_ACCESS_CODE }) @JsonTypeName("gcJoinChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcJoinChannelData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -60,7 +60,7 @@ public GcJoinChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel to join. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to join.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public GcJoinChannelData userId(String userId) { * Specifies the unique ID of the user to join the public group channel. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to join the public group channel.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public GcJoinChannelData accessCode(String accessCode) { * This property should be specified if the public group channel to join requires an access code to users, which means that the is_access_code_required property of the channel resource is true. * @return accessCode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "This property should be specified if the public group channel to join requires an access code to users, which means that the is_access_code_required property of the channel resource is true.") @JsonProperty(JSON_PROPERTY_ACCESS_CODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcLeaveChannelData.java b/src/main/java/org/openapitools/client/model/GcLeaveChannelData.java index 49ce7120..1535f126 100644 --- a/src/main/java/org/openapitools/client/model/GcLeaveChannelData.java +++ b/src/main/java/org/openapitools/client/model/GcLeaveChannelData.java @@ -39,7 +39,7 @@ GcLeaveChannelData.JSON_PROPERTY_SHOULD_LEAVE_ALL }) @JsonTypeName("gcLeaveChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcLeaveChannelData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -62,7 +62,7 @@ public GcLeaveChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel to leave. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to leave.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -93,7 +93,7 @@ public GcLeaveChannelData addUserIdsItem(String userIdsItem) { * Specifies an array of one or more IDs of the users to leave the channel. * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of the users to leave the channel.") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -119,7 +119,7 @@ public GcLeaveChannelData shouldLeaveAll(Boolean shouldLeaveAll) { * Determines whether to make all members leave the channel. (Default: false) * @return shouldLeaveAll **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to make all members leave the channel. (Default: false)") @JsonProperty(JSON_PROPERTY_SHOULD_LEAVE_ALL) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcListBannedUsersResponse.java b/src/main/java/org/openapitools/client/model/GcListBannedUsersResponse.java index 4c8d1b1c..e991321c 100644 --- a/src/main/java/org/openapitools/client/model/GcListBannedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/GcListBannedUsersResponse.java @@ -41,7 +41,7 @@ GcListBannedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("gcListBannedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcListBannedUsersResponse { public static final String JSON_PROPERTY_BANNED_LIST = "banned_list"; private List bannedList = null; @@ -72,7 +72,7 @@ public GcListBannedUsersResponse addBannedListItem(OcListBannedUsersResponseBann * Get bannedList * @return bannedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BANNED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public GcListBannedUsersResponse totalBanCount(BigDecimal totalBanCount) { * Get totalBanCount * @return totalBanCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL_BAN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public GcListBannedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcListChannelsResponse.java b/src/main/java/org/openapitools/client/model/GcListChannelsResponse.java index 9da923c6..88e8adc9 100644 --- a/src/main/java/org/openapitools/client/model/GcListChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/GcListChannelsResponse.java @@ -41,7 +41,7 @@ GcListChannelsResponse.JSON_PROPERTY_TS }) @JsonTypeName("gcListChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcListChannelsResponse { public static final String JSON_PROPERTY_CHANNELS = "channels"; private List channels = null; @@ -72,7 +72,7 @@ public GcListChannelsResponse addChannelsItem(SendBirdGroupChannel channelsItem) * Get channels * @return channels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public GcListChannelsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public GcListChannelsResponse ts(BigDecimal ts) { * Get ts * @return ts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcListMembersResponse.java b/src/main/java/org/openapitools/client/model/GcListMembersResponse.java index 06b7ec7c..e1e946f2 100644 --- a/src/main/java/org/openapitools/client/model/GcListMembersResponse.java +++ b/src/main/java/org/openapitools/client/model/GcListMembersResponse.java @@ -39,7 +39,7 @@ GcListMembersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("gcListMembersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcListMembersResponse { public static final String JSON_PROPERTY_MEMBERS = "members"; private List members = null; @@ -67,7 +67,7 @@ public GcListMembersResponse addMembersItem(SendBirdUser membersItem) { * Get members * @return members **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MEMBERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public GcListMembersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcListMutedUsersResponse.java b/src/main/java/org/openapitools/client/model/GcListMutedUsersResponse.java index 2af366cd..bb7fc0e4 100644 --- a/src/main/java/org/openapitools/client/model/GcListMutedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/GcListMutedUsersResponse.java @@ -41,7 +41,7 @@ GcListMutedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("gcListMutedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcListMutedUsersResponse { public static final String JSON_PROPERTY_MUTED_LIST = "muted_list"; private List mutedList = null; @@ -72,7 +72,7 @@ public GcListMutedUsersResponse addMutedListItem(SendBirdUser mutedListItem) { * Get mutedList * @return mutedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public GcListMutedUsersResponse totalMuteCount(BigDecimal totalMuteCount) { * Get totalMuteCount * @return totalMuteCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL_MUTE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public GcListMutedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcListOperatorsResponse.java b/src/main/java/org/openapitools/client/model/GcListOperatorsResponse.java index ee3b4070..86f92402 100644 --- a/src/main/java/org/openapitools/client/model/GcListOperatorsResponse.java +++ b/src/main/java/org/openapitools/client/model/GcListOperatorsResponse.java @@ -39,7 +39,7 @@ GcListOperatorsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("gcListOperatorsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcListOperatorsResponse { public static final String JSON_PROPERTY_OPERATORS = "operators"; private List operators = null; @@ -67,7 +67,7 @@ public GcListOperatorsResponse addOperatorsItem(SendBirdUser operatorsItem) { * Get operators * @return operators **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public GcListOperatorsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredData.java b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredData.java index 0d61de7c..b4791150 100644 --- a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredData.java +++ b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredData.java @@ -37,7 +37,7 @@ GcMarkAllMessagesAsDeliveredData.JSON_PROPERTY_USER_ID }) @JsonTypeName("gcMarkAllMessagesAsDeliveredData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcMarkAllMessagesAsDeliveredData { public static final String JSON_PROPERTY_APPLICATION_ID = "application_id"; private String applicationId; @@ -60,7 +60,7 @@ public GcMarkAllMessagesAsDeliveredData applicationId(String applicationId) { * Specifies the unique ID of your application. * @return applicationId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of your application.") @JsonProperty(JSON_PROPERTY_APPLICATION_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public GcMarkAllMessagesAsDeliveredData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public GcMarkAllMessagesAsDeliveredData userId(String userId) { * Specifies the ID of the recipient to mark messages as delivered. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the recipient to mark messages as delivered.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredResponse.java b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredResponse.java index b66a06df..4b5cad10 100644 --- a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredResponse.java +++ b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsDeliveredResponse.java @@ -36,7 +36,7 @@ GcMarkAllMessagesAsDeliveredResponse.JSON_PROPERTY_TS }) @JsonTypeName("gcMarkAllMessagesAsDeliveredResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcMarkAllMessagesAsDeliveredResponse { public static final String JSON_PROPERTY_TS = "ts"; private BigDecimal ts; @@ -53,7 +53,7 @@ public GcMarkAllMessagesAsDeliveredResponse ts(BigDecimal ts) { * Get ts * @return ts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsReadData.java b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsReadData.java index 7cb6e580..215b1f3e 100644 --- a/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsReadData.java +++ b/src/main/java/org/openapitools/client/model/GcMarkAllMessagesAsReadData.java @@ -37,7 +37,7 @@ GcMarkAllMessagesAsReadData.JSON_PROPERTY_TIMESTAMP }) @JsonTypeName("gcMarkAllMessagesAsReadData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcMarkAllMessagesAsReadData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -60,7 +60,7 @@ public GcMarkAllMessagesAsReadData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public GcMarkAllMessagesAsReadData userId(String userId) { * Specifies the ID of the user to mark all messages as read. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the user to mark all messages as read.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public GcMarkAllMessagesAsReadData timestamp(Integer timestamp) { * Specifies the timestamp to be the reference point of marking as read. If specified, the messages received before the specified time are marked as read. * @return timestamp **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the timestamp to be the reference point of marking as read. If specified, the messages received before the specified time are marked as read.") @JsonProperty(JSON_PROPERTY_TIMESTAMP) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcMuteUserData.java b/src/main/java/org/openapitools/client/model/GcMuteUserData.java index ff348722..e35d968e 100644 --- a/src/main/java/org/openapitools/client/model/GcMuteUserData.java +++ b/src/main/java/org/openapitools/client/model/GcMuteUserData.java @@ -38,7 +38,7 @@ GcMuteUserData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcMuteUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcMuteUserData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -64,7 +64,7 @@ public GcMuteUserData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public GcMuteUserData userId(String userId) { * Specifies the ID of the target user to mute. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the target user to mute.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public GcMuteUserData seconds(Integer seconds) { * Specifies the duration of mute status. If set to -1, the user will be muted permanently (10 years, technically). (Default: -1) * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the duration of mute status. If set to -1, the user will be muted permanently (10 years, technically). (Default: -1)") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public GcMuteUserData description(String description) { * Specifies a reason for the muting. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a reason for the muting.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcRegisterOperatorsData.java b/src/main/java/org/openapitools/client/model/GcRegisterOperatorsData.java index ff8325b7..4eee455f 100644 --- a/src/main/java/org/openapitools/client/model/GcRegisterOperatorsData.java +++ b/src/main/java/org/openapitools/client/model/GcRegisterOperatorsData.java @@ -38,7 +38,7 @@ GcRegisterOperatorsData.JSON_PROPERTY_OPERATOR_IDS }) @JsonTypeName("gcRegisterOperatorsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcRegisterOperatorsData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -58,7 +58,7 @@ public GcRegisterOperatorsData channelUrl(String channelUrl) { * Specifies the URL of the channel to register operators to. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to register operators to.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,7 +89,7 @@ public GcRegisterOperatorsData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more IDs of users to register as operators of the channel. If the operators are not members of the channel yet, they need an [invitation](#2-invite-as-members) to [join](#2-join-a-channel) a privte group channel while they don't need any to join a [public](#-3-private-vs-public) group channel. The maximum allowed number of operators per channel is 100. * @return operatorIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of users to register as operators of the channel. If the operators are not members of the channel yet, they need an [invitation](#2-invite-as-members) to [join](#2-join-a-channel) a privte group channel while they don't need any to join a [public](#-3-private-vs-public) group channel. The maximum allowed number of operators per channel is 100.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcRegisterOperatorsResponse.java b/src/main/java/org/openapitools/client/model/GcRegisterOperatorsResponse.java index ef165b1b..d607d931 100644 --- a/src/main/java/org/openapitools/client/model/GcRegisterOperatorsResponse.java +++ b/src/main/java/org/openapitools/client/model/GcRegisterOperatorsResponse.java @@ -37,7 +37,7 @@ GcRegisterOperatorsResponse.JSON_PROPERTY_OPERATOR_IDS }) @JsonTypeName("gcRegisterOperatorsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcRegisterOperatorsResponse { public static final String JSON_PROPERTY_OPERATOR_IDS = "operator_ids"; private List operatorIds = null; @@ -62,7 +62,7 @@ public GcRegisterOperatorsResponse addOperatorIdsItem(String operatorIdsItem) { * Get operatorIds * @return operatorIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcResetChatHistoryData.java b/src/main/java/org/openapitools/client/model/GcResetChatHistoryData.java index 1878d219..710b9212 100644 --- a/src/main/java/org/openapitools/client/model/GcResetChatHistoryData.java +++ b/src/main/java/org/openapitools/client/model/GcResetChatHistoryData.java @@ -37,7 +37,7 @@ GcResetChatHistoryData.JSON_PROPERTY_RESET_ALL }) @JsonTypeName("gcResetChatHistoryData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcResetChatHistoryData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -60,7 +60,7 @@ public GcResetChatHistoryData channelUrl(String channelUrl) { * Specifies the URL of the target channel to reset chat history. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel to reset chat history.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public GcResetChatHistoryData userId(String userId) { * Specifies the unique ID of the user whose chat history to reset in the channel. If this user_id property is specified, the reset_all property is not required. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user whose chat history to reset in the channel. If this user_id property is specified, the reset_all property is not required.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public GcResetChatHistoryData resetAll(Boolean resetAll) { * Determines whether to reset all users' chat history in the channel. If this reset_all property is specified, the user_id property is not required. * @return resetAll **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to reset all users' chat history in the channel. If this reset_all property is specified, the user_id property is not required.") @JsonProperty(JSON_PROPERTY_RESET_ALL) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcResetChatHistoryResponse.java b/src/main/java/org/openapitools/client/model/GcResetChatHistoryResponse.java index 9b3d47e1..9305f885 100644 --- a/src/main/java/org/openapitools/client/model/GcResetChatHistoryResponse.java +++ b/src/main/java/org/openapitools/client/model/GcResetChatHistoryResponse.java @@ -36,7 +36,7 @@ GcResetChatHistoryResponse.JSON_PROPERTY_TS_MESSAGE_OFFSET }) @JsonTypeName("gcResetChatHistoryResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcResetChatHistoryResponse { public static final String JSON_PROPERTY_TS_MESSAGE_OFFSET = "ts_message_offset"; private BigDecimal tsMessageOffset; @@ -53,7 +53,7 @@ public GcResetChatHistoryResponse tsMessageOffset(BigDecimal tsMessageOffset) { * Get tsMessageOffset * @return tsMessageOffset **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TS_MESSAGE_OFFSET) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcTypingIndicatorsData.java b/src/main/java/org/openapitools/client/model/GcTypingIndicatorsData.java index 70b3082c..29270ad1 100644 --- a/src/main/java/org/openapitools/client/model/GcTypingIndicatorsData.java +++ b/src/main/java/org/openapitools/client/model/GcTypingIndicatorsData.java @@ -37,7 +37,7 @@ GcTypingIndicatorsData.JSON_PROPERTY_USER_IDS }) @JsonTypeName("gcTypingIndicatorsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcTypingIndicatorsData { public static final String JSON_PROPERTY_USER_IDS = "user_ids"; private List userIds = new ArrayList<>(); @@ -59,7 +59,7 @@ public GcTypingIndicatorsData addUserIdsItem(String userIdsItem) { * Specifies an array of IDs of users who are to stop using the typing indicator. You can list up to ten user IDs. * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of IDs of users who are to stop using the typing indicator. You can list up to ten user IDs.") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcUpdateBanByIdData.java b/src/main/java/org/openapitools/client/model/GcUpdateBanByIdData.java index 45cf4d2b..9fc8cae7 100644 --- a/src/main/java/org/openapitools/client/model/GcUpdateBanByIdData.java +++ b/src/main/java/org/openapitools/client/model/GcUpdateBanByIdData.java @@ -38,7 +38,7 @@ GcUpdateBanByIdData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcUpdateBanByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcUpdateBanByIdData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -64,7 +64,7 @@ public GcUpdateBanByIdData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public GcUpdateBanByIdData bannedUserId(String bannedUserId) { * Specifies the ID of the banned user to update. * @return bannedUserId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the banned user to update.") @JsonProperty(JSON_PROPERTY_BANNED_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public GcUpdateBanByIdData seconds(Integer seconds) { * Specifies a new ban duration to update. If set to -1, the user will be banned permanently (10 years, technically). * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a new ban duration to update. If set to -1, the user will be banned permanently (10 years, technically).") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public GcUpdateBanByIdData description(String description) { * Specifies a new reason for the banning to update. The length is limited to 250 characters. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a new reason for the banning to update. The length is limited to 250 characters.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcUpdateBanByIdResponse.java b/src/main/java/org/openapitools/client/model/GcUpdateBanByIdResponse.java index 1cdfbae9..0ae8644c 100644 --- a/src/main/java/org/openapitools/client/model/GcUpdateBanByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GcUpdateBanByIdResponse.java @@ -40,7 +40,7 @@ GcUpdateBanByIdResponse.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcUpdateBanByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcUpdateBanByIdResponse { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -66,7 +66,7 @@ public GcUpdateBanByIdResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public GcUpdateBanByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public GcUpdateBanByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public GcUpdateBanByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcUpdateChannelByUrlData.java b/src/main/java/org/openapitools/client/model/GcUpdateChannelByUrlData.java index 3bed3a17..608e05fc 100644 --- a/src/main/java/org/openapitools/client/model/GcUpdateChannelByUrlData.java +++ b/src/main/java/org/openapitools/client/model/GcUpdateChannelByUrlData.java @@ -47,7 +47,7 @@ GcUpdateChannelByUrlData.JSON_PROPERTY_OPERATOR_IDS }) @JsonTypeName("gcUpdateChannelByUrlData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcUpdateChannelByUrlData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -91,7 +91,7 @@ public GcUpdateChannelByUrlData channelUrl(String channelUrl) { * Specifies the URL of the channel to update. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to update.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -117,7 +117,7 @@ public GcUpdateChannelByUrlData name(String name) { * Specifies the name of the channel, or the channel topic. The length is limited to 191 characters. * @return name **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of the channel, or the channel topic. The length is limited to 191 characters.") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -143,7 +143,7 @@ public GcUpdateChannelByUrlData coverUrl(String coverUrl) { * Specifies the unique URL of the cover image. The length is limited to 2,048 characters. * @return coverUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique URL of the cover image. The length is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -169,7 +169,7 @@ public GcUpdateChannelByUrlData coverFile(File coverFile) { * Uploads the cover image file for the channel. * @return coverFile **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Uploads the cover image file for the channel.") @JsonProperty(JSON_PROPERTY_COVER_FILE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -195,7 +195,7 @@ public GcUpdateChannelByUrlData customType(String customType) { * Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -221,7 +221,7 @@ public GcUpdateChannelByUrlData data(String data) { * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return data **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -247,7 +247,7 @@ public GcUpdateChannelByUrlData isDistinct(Boolean isDistinct) { * Determines whether to reuse an existing channel or create a new channel. If set to true, returns a channel with the current channel members users or creates a new channel if no match is found. Sendbird server can also use the custom channel type in the custom_type property if specified along with the users to return the corresponding channel. If set to false, Sendbird server always creates a new channel with a combination of the users as well as the channel custom type if specified. (Default: false)<br /><br /> Under this property, Sendbird server does not distinguish channels based on other properties such as channel URL or channel name. * @return isDistinct **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to reuse an existing channel or create a new channel. If set to true, returns a channel with the current channel members users or creates a new channel if no match is found. Sendbird server can also use the custom channel type in the custom_type property if specified along with the users to return the corresponding channel. If set to false, Sendbird server always creates a new channel with a combination of the users as well as the channel custom type if specified. (Default: false)

Under this property, Sendbird server does not distinguish channels based on other properties such as channel URL or channel name.") @JsonProperty(JSON_PROPERTY_IS_DISTINCT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -273,7 +273,7 @@ public GcUpdateChannelByUrlData isPublic(Boolean isPublic) { * Determines whether to allow a user to join the channel without an invitation. (Default: false) * @return isPublic **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to allow a user to join the channel without an invitation. (Default: false)") @JsonProperty(JSON_PROPERTY_IS_PUBLIC) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -299,7 +299,7 @@ public GcUpdateChannelByUrlData accessCode(String accessCode) { * This property can be used only when the channel operator wants to set an access code for a public group channel. If specified, the is_access_code_required property of the channel resource is then set to true, and the channel begins to require the specified access code to a user who attempts to join. * @return accessCode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "This property can be used only when the channel operator wants to set an access code for a public group channel. If specified, the is_access_code_required property of the channel resource is then set to true, and the channel begins to require the specified access code to a user who attempts to join.") @JsonProperty(JSON_PROPERTY_ACCESS_CODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -330,7 +330,7 @@ public GcUpdateChannelByUrlData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more IDs of users to register as operators of the channel. If the operators are not members of the channel yet, they need an [invitation](#2-invite-as-members) to [join](#2-join-a-channel) a privte group channel while they don't need any to join a [public](#-3-private-vs-public) group channel. The maximum allowed number of operators per channel is 100. * @return operatorIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of users to register as operators of the channel. If the operators are not members of the channel yet, they need an [invitation](#2-invite-as-members) to [join](#2-join-a-channel) a privte group channel while they don't need any to join a [public](#-3-private-vs-public) group channel. The maximum allowed number of operators per channel is 100.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GcViewBanByIdResponse.java b/src/main/java/org/openapitools/client/model/GcViewBanByIdResponse.java index 6727585c..1fd7b864 100644 --- a/src/main/java/org/openapitools/client/model/GcViewBanByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GcViewBanByIdResponse.java @@ -40,7 +40,7 @@ GcViewBanByIdResponse.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcViewBanByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcViewBanByIdResponse { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -66,7 +66,7 @@ public GcViewBanByIdResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public GcViewBanByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public GcViewBanByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public GcViewBanByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcViewMuteByIdResponse.java b/src/main/java/org/openapitools/client/model/GcViewMuteByIdResponse.java index 30954d0e..93841f97 100644 --- a/src/main/java/org/openapitools/client/model/GcViewMuteByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GcViewMuteByIdResponse.java @@ -40,7 +40,7 @@ GcViewMuteByIdResponse.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("gcViewMuteByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcViewMuteByIdResponse { public static final String JSON_PROPERTY_IS_MUTED = "is_muted"; private Boolean isMuted; @@ -69,7 +69,7 @@ public GcViewMuteByIdResponse isMuted(Boolean isMuted) { * Get isMuted * @return isMuted **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_MUTED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -95,7 +95,7 @@ public GcViewMuteByIdResponse remainingDuration(BigDecimal remainingDuration) { * Get remainingDuration * @return remainingDuration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REMAINING_DURATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,7 +121,7 @@ public GcViewMuteByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,7 +147,7 @@ public GcViewMuteByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public GcViewMuteByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GcViewNumberOfEachMembersUnreadMessagesResponse.java b/src/main/java/org/openapitools/client/model/GcViewNumberOfEachMembersUnreadMessagesResponse.java index eb4b4a43..515ee100 100644 --- a/src/main/java/org/openapitools/client/model/GcViewNumberOfEachMembersUnreadMessagesResponse.java +++ b/src/main/java/org/openapitools/client/model/GcViewNumberOfEachMembersUnreadMessagesResponse.java @@ -39,7 +39,7 @@ GcViewNumberOfEachMembersUnreadMessagesResponse.JSON_PROPERTY_UNREAD }) @JsonTypeName("gcViewNumberOfEachMembersUnreadMessagesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GcViewNumberOfEachMembersUnreadMessagesResponse { public static final String JSON_PROPERTY_UNREAD = "unread"; private Map unread = null; @@ -64,7 +64,7 @@ public GcViewNumberOfEachMembersUnreadMessagesResponse putUnreadItem(String key, * Get unread * @return unread **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNREAD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenData.java b/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenData.java index 3041c566..4d1ef708 100644 --- a/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenData.java +++ b/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenData.java @@ -35,7 +35,7 @@ GenerateSecondaryApiTokenData.JSON_PROPERTY_H_T_T_P_A_P_I_T_O_K_E_N }) @JsonTypeName("generateSecondaryApiTokenData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GenerateSecondaryApiTokenData { public static final String JSON_PROPERTY_H_T_T_P_A_P_I_T_O_K_E_N = "HTTP_API_TOKEN"; private String HTTP_API_TOKEN; @@ -52,7 +52,7 @@ public GenerateSecondaryApiTokenData HTTP_API_TOKEN(String HTTP_API_TOKEN) { * Specifies the master API token of the application. * @return HTTP_API_TOKEN **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the master API token of the application.") @JsonProperty(JSON_PROPERTY_H_T_T_P_A_P_I_T_O_K_E_N) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenResponse.java b/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenResponse.java index d4d289ee..6aeca741 100644 --- a/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/GenerateSecondaryApiTokenResponse.java @@ -37,7 +37,7 @@ GenerateSecondaryApiTokenResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("generateSecondaryApiTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GenerateSecondaryApiTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -57,7 +57,7 @@ public GenerateSecondaryApiTokenResponse token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public GenerateSecondaryApiTokenResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementByIdResponse.java b/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementByIdResponse.java index b3d7f78f..ca125533 100644 --- a/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementByIdResponse.java @@ -42,7 +42,7 @@ GetDetailedOpenRateOfAnnouncementByIdResponse.JSON_PROPERTY_CUMULATIVE_OPEN_RATES }) @JsonTypeName("getDetailedOpenRateOfAnnouncementByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetDetailedOpenRateOfAnnouncementByIdResponse { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -71,7 +71,7 @@ public GetDetailedOpenRateOfAnnouncementByIdResponse uniqueId(String uniqueId) { * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,7 +105,7 @@ public GetDetailedOpenRateOfAnnouncementByIdResponse addOpenCountsItem(BigDecima * Get openCounts * @return openCounts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -139,7 +139,7 @@ public GetDetailedOpenRateOfAnnouncementByIdResponse addOpenRatesItem(BigDecimal * Get openRates * @return openRates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public GetDetailedOpenRateOfAnnouncementByIdResponse addCumulativeOpenCountsItem * Get cumulativeOpenCounts * @return cumulativeOpenCounts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUMULATIVE_OPEN_COUNTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -207,7 +207,7 @@ public GetDetailedOpenRateOfAnnouncementByIdResponse addCumulativeOpenRatesItem( * Get cumulativeOpenRates * @return cumulativeOpenRates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUMULATIVE_OPEN_RATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementGroupResponse.java b/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementGroupResponse.java index 0cd42ff5..084b83ca 100644 --- a/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementGroupResponse.java +++ b/src/main/java/org/openapitools/client/model/GetDetailedOpenRateOfAnnouncementGroupResponse.java @@ -43,7 +43,7 @@ GetDetailedOpenRateOfAnnouncementGroupResponse.JSON_PROPERTY_CUMULATIVE_OPEN_RATES }) @JsonTypeName("getDetailedOpenRateOfAnnouncementGroupResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetDetailedOpenRateOfAnnouncementGroupResponse { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -75,7 +75,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse uniqueId(String uniqueId) * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -101,7 +101,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse announcementGroup(String a * Get announcementGroup * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,7 +135,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse addOpenCountsItem(BigDecim * Get openCounts * @return openCounts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,7 +169,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse addOpenRatesItem(BigDecima * Get openRates * @return openRates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse addCumulativeOpenCountsIte * Get cumulativeOpenCounts * @return cumulativeOpenCounts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUMULATIVE_OPEN_COUNTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -237,7 +237,7 @@ public GetDetailedOpenRateOfAnnouncementGroupResponse addCumulativeOpenRatesItem * Get cumulativeOpenRates * @return cumulativeOpenRates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUMULATIVE_OPEN_RATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponse.java b/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponse.java index a1e488e6..9a42c4f4 100644 --- a/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponse.java @@ -39,7 +39,7 @@ GetDetailedOpenStatusOfAnnouncementByIdResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("getDetailedOpenStatusOfAnnouncementByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetDetailedOpenStatusOfAnnouncementByIdResponse { public static final String JSON_PROPERTY_OPEN_STATUS = "open_status"; private List openStatus = null; @@ -67,7 +67,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponse addOpenStatusItem(GetDeta * Get openStatus * @return openStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner.java b/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner.java index 8b9703d8..49b2a63e 100644 --- a/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner.java +++ b/src/main/java/org/openapitools/client/model/GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner.java @@ -40,7 +40,7 @@ GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner.JSON_PROPERTY_OPEN_AT }) @JsonTypeName("getDetailedOpenStatusOfAnnouncementByIdResponse_open_status_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -69,7 +69,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner userId(Str * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -95,7 +95,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner channelUrl * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,7 +121,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner hasOpened( * Get hasOpened * @return hasOpened **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HAS_OPENED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,7 +147,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner sentAt(Big * Get sentAt * @return sentAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public GetDetailedOpenStatusOfAnnouncementByIdResponseOpenStatusInner openAt(Big * Get openAt * @return openAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponse.java b/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponse.java index a58c494b..efa24ac1 100644 --- a/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponse.java +++ b/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponse.java @@ -40,7 +40,7 @@ GetStatisticsDailyResponse.JSON_PROPERTY_WEEK }) @JsonTypeName("getStatisticsDailyResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetStatisticsDailyResponse { public static final String JSON_PROPERTY_STATISTICS = "statistics"; private List statistics = null; @@ -68,7 +68,7 @@ public GetStatisticsDailyResponse addStatisticsItem(GetStatisticsDailyResponseSt * Get statistics * @return statistics **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATISTICS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public GetStatisticsDailyResponse week(BigDecimal week) { * Get week * @return week **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEEK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponseStatisticsInner.java b/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponseStatisticsInner.java index 16905fcd..0fb5df81 100644 --- a/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponseStatisticsInner.java +++ b/src/main/java/org/openapitools/client/model/GetStatisticsDailyResponseStatisticsInner.java @@ -46,7 +46,7 @@ GetStatisticsDailyResponseStatisticsInner.JSON_PROPERTY_OPEN_COUNT }) @JsonTypeName("getStatisticsDailyResponse_statistics_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetStatisticsDailyResponseStatisticsInner { public static final String JSON_PROPERTY_DATE_RANGE = "date_range"; private String dateRange; @@ -93,7 +93,7 @@ public GetStatisticsDailyResponseStatisticsInner dateRange(String dateRange) { * Get dateRange * @return dateRange **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATE_RANGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -119,7 +119,7 @@ public GetStatisticsDailyResponseStatisticsInner canceledAnnouncementCount(BigDe * Get canceledAnnouncementCount * @return canceledAnnouncementCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CANCELED_ANNOUNCEMENT_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -145,7 +145,7 @@ public GetStatisticsDailyResponseStatisticsInner stoppedAnnouncementCount(BigDec * Get stoppedAnnouncementCount * @return stoppedAnnouncementCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STOPPED_ANNOUNCEMENT_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -171,7 +171,7 @@ public GetStatisticsDailyResponseStatisticsInner completedAnnouncementCount(BigD * Get completedAnnouncementCount * @return completedAnnouncementCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETED_ANNOUNCEMENT_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -197,7 +197,7 @@ public GetStatisticsDailyResponseStatisticsInner totalAnnouncementCount(BigDecim * Get totalAnnouncementCount * @return totalAnnouncementCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL_ANNOUNCEMENT_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,7 +223,7 @@ public GetStatisticsDailyResponseStatisticsInner targetChannelCount(BigDecimal t * Get targetChannelCount * @return targetChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -249,7 +249,7 @@ public GetStatisticsDailyResponseStatisticsInner targetUserCount(BigDecimal targ * Get targetUserCount * @return targetUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -275,7 +275,7 @@ public GetStatisticsDailyResponseStatisticsInner sentChannelCount(BigDecimal sen * Get sentChannelCount * @return sentChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -301,7 +301,7 @@ public GetStatisticsDailyResponseStatisticsInner sentUserCount(BigDecimal sentUs * Get sentUserCount * @return sentUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -327,7 +327,7 @@ public GetStatisticsDailyResponseStatisticsInner openRate(BigDecimal openRate) { * Get openRate * @return openRate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -353,7 +353,7 @@ public GetStatisticsDailyResponseStatisticsInner openCount(BigDecimal openCount) * Get openCount * @return openCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetStatisticsMonthlyResponse.java b/src/main/java/org/openapitools/client/model/GetStatisticsMonthlyResponse.java index 66977bfe..265b068c 100644 --- a/src/main/java/org/openapitools/client/model/GetStatisticsMonthlyResponse.java +++ b/src/main/java/org/openapitools/client/model/GetStatisticsMonthlyResponse.java @@ -40,7 +40,7 @@ GetStatisticsMonthlyResponse.JSON_PROPERTY_WEEK }) @JsonTypeName("getStatisticsMonthlyResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetStatisticsMonthlyResponse { public static final String JSON_PROPERTY_STATISTICS = "statistics"; private List statistics = null; @@ -68,7 +68,7 @@ public GetStatisticsMonthlyResponse addStatisticsItem(GetStatisticsDailyResponse * Get statistics * @return statistics **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATISTICS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public GetStatisticsMonthlyResponse week(BigDecimal week) { * Get week * @return week **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEEK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/GetStatisticsResponse.java b/src/main/java/org/openapitools/client/model/GetStatisticsResponse.java index 5e8f340f..b89ca97f 100644 --- a/src/main/java/org/openapitools/client/model/GetStatisticsResponse.java +++ b/src/main/java/org/openapitools/client/model/GetStatisticsResponse.java @@ -40,7 +40,7 @@ GetStatisticsResponse.JSON_PROPERTY_WEEK }) @JsonTypeName("getStatisticsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GetStatisticsResponse { public static final String JSON_PROPERTY_STATISTICS = "statistics"; private List statistics = null; @@ -68,7 +68,7 @@ public GetStatisticsResponse addStatisticsItem(GetStatisticsDailyResponseStatist * Get statistics * @return statistics **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATISTICS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public GetStatisticsResponse week(BigDecimal week) { * Get week * @return week **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEEK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/JoinChannelsData.java b/src/main/java/org/openapitools/client/model/JoinChannelsData.java index 5bf615ed..cb23d043 100644 --- a/src/main/java/org/openapitools/client/model/JoinChannelsData.java +++ b/src/main/java/org/openapitools/client/model/JoinChannelsData.java @@ -38,7 +38,7 @@ JoinChannelsData.JSON_PROPERTY_CHANNEL_URLS }) @JsonTypeName("joinChannelsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class JoinChannelsData { public static final String JSON_PROPERTY_BOT_USERID = "bot_userid"; private String botUserid; @@ -58,7 +58,7 @@ public JoinChannelsData botUserid(String botUserid) { * Specifies the ID of the bot to join the channels. * @return botUserid **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the bot to join the channels.") @JsonProperty(JSON_PROPERTY_BOT_USERID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,7 +89,7 @@ public JoinChannelsData addChannelUrlsItem(String channelUrlsItem) { * Specifies an array of one or more URLs of the channels to join. * @return channelUrls **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more URLs of the channels to join.") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/JoinChannelsResponse.java b/src/main/java/org/openapitools/client/model/JoinChannelsResponse.java index 3315401d..e1a5ffe8 100644 --- a/src/main/java/org/openapitools/client/model/JoinChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/JoinChannelsResponse.java @@ -38,7 +38,7 @@ JoinChannelsResponse.JSON_PROPERTY_CHANNELS }) @JsonTypeName("joinChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class JoinChannelsResponse { public static final String JSON_PROPERTY_CHANNELS = "channels"; private List channels = null; @@ -63,7 +63,7 @@ public JoinChannelsResponse addChannelsItem(SendBirdGroupChannel channelsItem) { * Get channels * @return channels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/LeaveMyGroupChannelsData.java b/src/main/java/org/openapitools/client/model/LeaveMyGroupChannelsData.java index 7a70407a..d67bb6c7 100644 --- a/src/main/java/org/openapitools/client/model/LeaveMyGroupChannelsData.java +++ b/src/main/java/org/openapitools/client/model/LeaveMyGroupChannelsData.java @@ -35,7 +35,7 @@ LeaveMyGroupChannelsData.JSON_PROPERTY_CUSTOM_TYPE }) @JsonTypeName("leaveMyGroupChannelsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class LeaveMyGroupChannelsData { public static final String JSON_PROPERTY_CUSTOM_TYPE = "custom_type"; private String customType; @@ -52,7 +52,7 @@ public LeaveMyGroupChannelsData customType(String customType) { * Specifies the custom channel type to make the user leave joined group channels with the corresponding type. * @return customType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the custom channel type to make the user leave joined group channels with the corresponding type.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponse.java b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponse.java index d4d6dc7c..8bee6921 100644 --- a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponse.java +++ b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponse.java @@ -39,7 +39,7 @@ ListAllEmojisAndEmojiCategoriesResponse.JSON_PROPERTY_EMOJI_CATEGORIES }) @JsonTypeName("listAllEmojisAndEmojiCategoriesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAllEmojisAndEmojiCategoriesResponse { public static final String JSON_PROPERTY_EMOJI_HASH = "emoji_hash"; private String emojiHash; @@ -59,7 +59,7 @@ public ListAllEmojisAndEmojiCategoriesResponse emojiHash(String emojiHash) { * Get emojiHash * @return emojiHash **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJI_HASH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListAllEmojisAndEmojiCategoriesResponse addEmojiCategoriesItem(ListAllEmo * Get emojiCategories * @return emojiCategories **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJI_CATEGORIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner.java b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner.java index 790fa9ee..ac22ef72 100644 --- a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner.java +++ b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner.java @@ -42,7 +42,7 @@ ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner.JSON_PROPERTY_EMOJIS }) @JsonTypeName("listAllEmojisAndEmojiCategoriesResponse_emoji_categories_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner { public static final String JSON_PROPERTY_ID = "id"; private BigDecimal id; @@ -68,7 +68,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner id(BigDecimal * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner name(String n * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner url(String ur * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInner addEmojisItem * Get emojis * @return emojis **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJIS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner.java b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner.java index a9fcea01..b5730490 100644 --- a/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner.java +++ b/src/main/java/org/openapitools/client/model/ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner.java @@ -38,7 +38,7 @@ ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner.JSON_PROPERTY_URL }) @JsonTypeName("listAllEmojisAndEmojiCategoriesResponse_emoji_categories_inner_emojis_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner { public static final String JSON_PROPERTY_ID = "id"; private BigDecimal id; @@ -61,7 +61,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner id * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner ke * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner ur * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListAnnouncementGroupsResponse.java b/src/main/java/org/openapitools/client/model/ListAnnouncementGroupsResponse.java index 0fdb0874..509fb46e 100644 --- a/src/main/java/org/openapitools/client/model/ListAnnouncementGroupsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListAnnouncementGroupsResponse.java @@ -38,7 +38,7 @@ ListAnnouncementGroupsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listAnnouncementGroupsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAnnouncementGroupsResponse { public static final String JSON_PROPERTY_ANNOUNCEMENT_GROUPS = "announcement_groups"; private List announcementGroups = null; @@ -66,7 +66,7 @@ public ListAnnouncementGroupsResponse addAnnouncementGroupsItem(String announcem * Get announcementGroups * @return announcementGroups **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUPS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public ListAnnouncementGroupsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListAnnouncementsResponse.java b/src/main/java/org/openapitools/client/model/ListAnnouncementsResponse.java index fb61fdba..dcafd993 100644 --- a/src/main/java/org/openapitools/client/model/ListAnnouncementsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListAnnouncementsResponse.java @@ -39,7 +39,7 @@ ListAnnouncementsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listAnnouncementsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAnnouncementsResponse { public static final String JSON_PROPERTY_ANNOUNCEMENTS = "announcements"; private List announcements = null; @@ -67,7 +67,7 @@ public ListAnnouncementsResponse addAnnouncementsItem(ListAnnouncementsResponseA * Get announcements * @return announcements **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListAnnouncementsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListAnnouncementsResponseAnnouncementsInner.java b/src/main/java/org/openapitools/client/model/ListAnnouncementsResponseAnnouncementsInner.java index d167bddb..ec556542 100644 --- a/src/main/java/org/openapitools/client/model/ListAnnouncementsResponseAnnouncementsInner.java +++ b/src/main/java/org/openapitools/client/model/ListAnnouncementsResponseAnnouncementsInner.java @@ -59,7 +59,7 @@ ListAnnouncementsResponseAnnouncementsInner.JSON_PROPERTY_TARGET_CUSTOM_TYPE }) @JsonTypeName("listAnnouncementsResponse_announcements_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListAnnouncementsResponseAnnouncementsInner { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -139,7 +139,7 @@ public ListAnnouncementsResponseAnnouncementsInner uniqueId(String uniqueId) { * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,7 +165,7 @@ public ListAnnouncementsResponseAnnouncementsInner announcementGroup(String anno * Get announcementGroup * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,7 +191,7 @@ public ListAnnouncementsResponseAnnouncementsInner message(ScheduleAnnouncementR * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -217,7 +217,7 @@ public ListAnnouncementsResponseAnnouncementsInner enablePush(Boolean enablePush * Get enablePush * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -243,7 +243,7 @@ public ListAnnouncementsResponseAnnouncementsInner targetAt(String targetAt) { * Get targetAt * @return targetAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -269,7 +269,7 @@ public ListAnnouncementsResponseAnnouncementsInner targetUserCount(BigDecimal ta * Get targetUserCount * @return targetUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -295,7 +295,7 @@ public ListAnnouncementsResponseAnnouncementsInner targetChannelCount(BigDecimal * Get targetChannelCount * @return targetChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -321,7 +321,7 @@ public ListAnnouncementsResponseAnnouncementsInner status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -347,7 +347,7 @@ public ListAnnouncementsResponseAnnouncementsInner scheduledAt(BigDecimal schedu * Get scheduledAt * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -373,7 +373,7 @@ public ListAnnouncementsResponseAnnouncementsInner ceaseAt(String ceaseAt) { * Get ceaseAt * @return ceaseAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CEASE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -399,7 +399,7 @@ public ListAnnouncementsResponseAnnouncementsInner resumeAt(String resumeAt) { * Get resumeAt * @return resumeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RESUME_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -425,7 +425,7 @@ public ListAnnouncementsResponseAnnouncementsInner completedAt(BigDecimal comple * Get completedAt * @return completedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -451,7 +451,7 @@ public ListAnnouncementsResponseAnnouncementsInner sentUserCount(BigDecimal sent * Get sentUserCount * @return sentUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -477,7 +477,7 @@ public ListAnnouncementsResponseAnnouncementsInner openCount(BigDecimal openCoun * Get openCount * @return openCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -503,7 +503,7 @@ public ListAnnouncementsResponseAnnouncementsInner openRate(BigDecimal openRate) * Get openRate * @return openRate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -529,7 +529,7 @@ public ListAnnouncementsResponseAnnouncementsInner createChannel(Boolean createC * Get createChannel * @return createChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -555,7 +555,7 @@ public ListAnnouncementsResponseAnnouncementsInner createChannelOptions(Schedule * Get createChannelOptions * @return createChannelOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -581,7 +581,7 @@ public ListAnnouncementsResponseAnnouncementsInner endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -607,7 +607,7 @@ public ListAnnouncementsResponseAnnouncementsInner markAsRead(Boolean markAsRead * Get markAsRead * @return markAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -633,7 +633,7 @@ public ListAnnouncementsResponseAnnouncementsInner sentChannelCount(BigDecimal s * Get sentChannelCount * @return sentChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -659,7 +659,7 @@ public ListAnnouncementsResponseAnnouncementsInner targetChannelType(String targ * Get targetChannelType * @return targetChannelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -685,7 +685,7 @@ public ListAnnouncementsResponseAnnouncementsInner targetCustomType(String targe * Get targetCustomType * @return targetCustomType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListBannedChannelsResponse.java b/src/main/java/org/openapitools/client/model/ListBannedChannelsResponse.java index 93b9dc44..9a2cad1d 100644 --- a/src/main/java/org/openapitools/client/model/ListBannedChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListBannedChannelsResponse.java @@ -39,7 +39,7 @@ ListBannedChannelsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listBannedChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListBannedChannelsResponse { public static final String JSON_PROPERTY_BANNED_CHANNELS = "banned_channels"; private List bannedChannels = null; @@ -67,7 +67,7 @@ public ListBannedChannelsResponse addBannedChannelsItem(ListBannedChannelsRespon * Get bannedChannels * @return bannedChannels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BANNED_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListBannedChannelsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListBannedChannelsResponseBannedChannelsInner.java b/src/main/java/org/openapitools/client/model/ListBannedChannelsResponseBannedChannelsInner.java index 4f7e6ce2..cbb12280 100644 --- a/src/main/java/org/openapitools/client/model/ListBannedChannelsResponseBannedChannelsInner.java +++ b/src/main/java/org/openapitools/client/model/ListBannedChannelsResponseBannedChannelsInner.java @@ -40,7 +40,7 @@ ListBannedChannelsResponseBannedChannelsInner.JSON_PROPERTY_END_AT }) @JsonTypeName("listBannedChannelsResponse_banned_channels_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListBannedChannelsResponseBannedChannelsInner { public static final String JSON_PROPERTY_START_AT = "start_at"; private BigDecimal startAt; @@ -66,7 +66,7 @@ public ListBannedChannelsResponseBannedChannelsInner startAt(BigDecimal startAt) * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public ListBannedChannelsResponseBannedChannelsInner description(String descript * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public ListBannedChannelsResponseBannedChannelsInner channel(SendBirdChannelResp * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public ListBannedChannelsResponseBannedChannelsInner endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListBlockedUsersResponse.java b/src/main/java/org/openapitools/client/model/ListBlockedUsersResponse.java index 91f4fa79..7d579561 100644 --- a/src/main/java/org/openapitools/client/model/ListBlockedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/ListBlockedUsersResponse.java @@ -39,7 +39,7 @@ ListBlockedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listBlockedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListBlockedUsersResponse { public static final String JSON_PROPERTY_USERS = "users"; private List users = null; @@ -67,7 +67,7 @@ public ListBlockedUsersResponse addUsersItem(SendBirdUser usersItem) { * Get users * @return users **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListBlockedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListBotsResponse.java b/src/main/java/org/openapitools/client/model/ListBotsResponse.java index e0d05425..29e32ae0 100644 --- a/src/main/java/org/openapitools/client/model/ListBotsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListBotsResponse.java @@ -39,7 +39,7 @@ ListBotsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listBotsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListBotsResponse { public static final String JSON_PROPERTY_BOTS = "bots"; private List bots = null; @@ -67,7 +67,7 @@ public ListBotsResponse addBotsItem(ListBotsResponseBotsInner botsItem) { * Get bots * @return bots **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListBotsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListBotsResponseBotsInner.java b/src/main/java/org/openapitools/client/model/ListBotsResponseBotsInner.java index 404412a6..7d55bfbd 100644 --- a/src/main/java/org/openapitools/client/model/ListBotsResponseBotsInner.java +++ b/src/main/java/org/openapitools/client/model/ListBotsResponseBotsInner.java @@ -42,7 +42,7 @@ ListBotsResponseBotsInner.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("listBotsResponse_bots_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListBotsResponseBotsInner { public static final String JSON_PROPERTY_BOT = "bot"; private CreateBotResponseBot bot; @@ -74,7 +74,7 @@ public ListBotsResponseBotsInner bot(CreateBotResponseBot bot) { * Get bot * @return bot **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,7 +100,7 @@ public ListBotsResponseBotsInner botCallbackUrl(String botCallbackUrl) { * Get botCallbackUrl * @return botCallbackUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public ListBotsResponseBotsInner enableMarkAsRead(Boolean enableMarkAsRead) { * Get enableMarkAsRead * @return enableMarkAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public ListBotsResponseBotsInner isPrivacyMode(Boolean isPrivacyMode) { * Get isPrivacyMode * @return isPrivacyMode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public ListBotsResponseBotsInner showMember(Boolean showMember) { * Get showMember * @return showMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public ListBotsResponseBotsInner channelInvitationPreference(BigDecimal channelI * Get channelInvitationPreference * @return channelInvitationPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponse.java b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponse.java index 8a7e0a91..798194f5 100644 --- a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponse.java +++ b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponse.java @@ -39,7 +39,7 @@ ListDataExportsByMessageChannelOrUserResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listDataExportsByMessageChannelOrUserResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListDataExportsByMessageChannelOrUserResponse { public static final String JSON_PROPERTY_EXPORTED_DATA = "exported_data"; private List exportedData = null; @@ -67,7 +67,7 @@ public ListDataExportsByMessageChannelOrUserResponse addExportedDataItem(ListDat * Get exportedData * @return exportedData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXPORTED_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListDataExportsByMessageChannelOrUserResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInner.java b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInner.java index 79f7810e..bed7a305 100644 --- a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInner.java +++ b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInner.java @@ -50,7 +50,7 @@ ListDataExportsByMessageChannelOrUserResponseExportedDataInner.JSON_PROPERTY_USER_IDS }) @JsonTypeName("listDataExportsByMessageChannelOrUserResponse_exported_data_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListDataExportsByMessageChannelOrUserResponseExportedDataInner { public static final String JSON_PROPERTY_REQUEST_ID = "request_id"; private String requestId; @@ -100,7 +100,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner requestId( * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner status(Str * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner format(Str * Get format * @return format **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FORMAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner csvDelimit * Get csvDelimiter * @return csvDelimiter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CSV_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner timezone(S * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -230,7 +230,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner createdAt( * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,7 +256,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner startTs(Bi * Get startTs * @return startTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -282,7 +282,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner endTs(BigD * Get endTs * @return endTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -316,7 +316,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner addChannel * Get channelUrls * @return channelUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner addSenderI * Get senderIds * @return senderIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,7 +376,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner _file(List * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -410,7 +410,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInner addUserIds * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile.java b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile.java index e62515a3..c118acec 100644 --- a/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile.java +++ b/src/main/java/org/openapitools/client/model/ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile.java @@ -37,7 +37,7 @@ ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile.JSON_PROPERTY_EXPIRES_AT }) @JsonTypeName("listDataExportsByMessageChannelOrUserResponse_exported_data_inner_file") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile { public static final String JSON_PROPERTY_URL = "url"; private String url; @@ -57,7 +57,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile url(St * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public ListDataExportsByMessageChannelOrUserResponseExportedDataInnerFile expire * Get expiresAt * @return expiresAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXPIRES_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListEmojisResponse.java b/src/main/java/org/openapitools/client/model/ListEmojisResponse.java index cf87bce0..5843f572 100644 --- a/src/main/java/org/openapitools/client/model/ListEmojisResponse.java +++ b/src/main/java/org/openapitools/client/model/ListEmojisResponse.java @@ -38,7 +38,7 @@ ListEmojisResponse.JSON_PROPERTY_EMOJIS }) @JsonTypeName("listEmojisResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListEmojisResponse { public static final String JSON_PROPERTY_EMOJIS = "emojis"; private List emojis = null; @@ -63,7 +63,7 @@ public ListEmojisResponse addEmojisItem(SendBirdEmoji emojisItem) { * Get emojis * @return emojis **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJIS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListGdprRequestsResponse.java b/src/main/java/org/openapitools/client/model/ListGdprRequestsResponse.java index 93c9e2ca..1476efc6 100644 --- a/src/main/java/org/openapitools/client/model/ListGdprRequestsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListGdprRequestsResponse.java @@ -39,7 +39,7 @@ ListGdprRequestsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listGdprRequestsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListGdprRequestsResponse { public static final String JSON_PROPERTY_REQUESTS = "requests"; private List requests = null; @@ -67,7 +67,7 @@ public ListGdprRequestsResponse addRequestsItem(ListGdprRequestsResponseRequests * Get requests * @return requests **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUESTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListGdprRequestsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListGdprRequestsResponseRequestsInner.java b/src/main/java/org/openapitools/client/model/ListGdprRequestsResponseRequestsInner.java index dab71008..c97d52a9 100644 --- a/src/main/java/org/openapitools/client/model/ListGdprRequestsResponseRequestsInner.java +++ b/src/main/java/org/openapitools/client/model/ListGdprRequestsResponseRequestsInner.java @@ -46,7 +46,7 @@ ListGdprRequestsResponseRequestsInner.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("listGdprRequestsResponse_requests_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListGdprRequestsResponseRequestsInner { public static final String JSON_PROPERTY_REQUEST_ID = "request_id"; private String requestId; @@ -84,7 +84,7 @@ public ListGdprRequestsResponseRequestsInner requestId(String requestId) { * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -110,7 +110,7 @@ public ListGdprRequestsResponseRequestsInner action(String action) { * Get action * @return action **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,7 +136,7 @@ public ListGdprRequestsResponseRequestsInner status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -162,7 +162,7 @@ public ListGdprRequestsResponseRequestsInner userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,7 +188,7 @@ public ListGdprRequestsResponseRequestsInner files(ListDataExportsByMessageChann * Get files * @return files **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -222,7 +222,7 @@ public ListGdprRequestsResponseRequestsInner addUserIdsItem(String userIdsItem) * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,7 +248,7 @@ public ListGdprRequestsResponseRequestsInner channelDeleteOption(String channelD * Get channelDeleteOption * @return channelDeleteOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_DELETE_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -274,7 +274,7 @@ public ListGdprRequestsResponseRequestsInner createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMessagesResponse.java b/src/main/java/org/openapitools/client/model/ListMessagesResponse.java index fb4870c3..f05eec9d 100644 --- a/src/main/java/org/openapitools/client/model/ListMessagesResponse.java +++ b/src/main/java/org/openapitools/client/model/ListMessagesResponse.java @@ -38,7 +38,7 @@ ListMessagesResponse.JSON_PROPERTY_MESSAGES }) @JsonTypeName("listMessagesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMessagesResponse { public static final String JSON_PROPERTY_MESSAGES = "messages"; private List messages = null; @@ -63,7 +63,7 @@ public ListMessagesResponse addMessagesItem(ListMessagesResponseMessagesInner me * Get messages * @return messages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInner.java b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInner.java index c0f8f6b7..66d745ad 100644 --- a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInner.java +++ b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInner.java @@ -63,7 +63,7 @@ ListMessagesResponseMessagesInner.JSON_PROPERTY_OG_TAG }) @JsonTypeName("listMessagesResponse_messages_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMessagesResponseMessagesInner { public static final String JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS = "message_survival_seconds"; private BigDecimal messageSurvivalSeconds; @@ -143,7 +143,7 @@ public ListMessagesResponseMessagesInner messageSurvivalSeconds(BigDecimal messa * Get messageSurvivalSeconds * @return messageSurvivalSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,7 +169,7 @@ public ListMessagesResponseMessagesInner customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public ListMessagesResponseMessagesInner addMentionedUsersItem(SendBirdMessageRe * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -229,7 +229,7 @@ public ListMessagesResponseMessagesInner translations(Object translations) { * Get translations * @return translations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TRANSLATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -255,7 +255,7 @@ public ListMessagesResponseMessagesInner updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -281,7 +281,7 @@ public ListMessagesResponseMessagesInner isOpMsg(Boolean isOpMsg) { * Get isOpMsg * @return isOpMsg **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_OP_MSG) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -307,7 +307,7 @@ public ListMessagesResponseMessagesInner isRemoved(Boolean isRemoved) { * Get isRemoved * @return isRemoved **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REMOVED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -333,7 +333,7 @@ public ListMessagesResponseMessagesInner user(SendBirdMessageResponseUser user) * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -359,7 +359,7 @@ public ListMessagesResponseMessagesInner _file(Object _file) { * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -385,7 +385,7 @@ public ListMessagesResponseMessagesInner message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -411,7 +411,7 @@ public ListMessagesResponseMessagesInner data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -437,7 +437,7 @@ public ListMessagesResponseMessagesInner messageRetentionHour(BigDecimal message * Get messageRetentionHour * @return messageRetentionHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_RETENTION_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -463,7 +463,7 @@ public ListMessagesResponseMessagesInner silent(Boolean silent) { * Get silent * @return silent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -489,7 +489,7 @@ public ListMessagesResponseMessagesInner type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -515,7 +515,7 @@ public ListMessagesResponseMessagesInner createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -541,7 +541,7 @@ public ListMessagesResponseMessagesInner channelType(String channelType) { * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -567,7 +567,7 @@ public ListMessagesResponseMessagesInner reqId(String reqId) { * Get reqId * @return reqId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQ_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -593,7 +593,7 @@ public ListMessagesResponseMessagesInner mentionType(String mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -619,7 +619,7 @@ public ListMessagesResponseMessagesInner channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -645,7 +645,7 @@ public ListMessagesResponseMessagesInner messageId(BigDecimal messageId) { * Get messageId * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -679,7 +679,7 @@ public ListMessagesResponseMessagesInner addSortedMetaarrayItem(ListMessagesResp * Get sortedMetaarray * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -705,7 +705,7 @@ public ListMessagesResponseMessagesInner ogTag(ListMessagesResponseMessagesInner * Get ogTag * @return ogTag **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_TAG) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTag.java b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTag.java index ec253e59..6edb5042 100644 --- a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTag.java +++ b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTag.java @@ -39,7 +39,7 @@ ListMessagesResponseMessagesInnerOgTag.JSON_PROPERTY_OG_COLON_IMAGE }) @JsonTypeName("listMessagesResponse_messages_inner_og_tag") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMessagesResponseMessagesInnerOgTag { public static final String JSON_PROPERTY_OG_COLON_URL = "og:url"; private String ogColonUrl; @@ -65,7 +65,7 @@ public ListMessagesResponseMessagesInnerOgTag ogColonUrl(String ogColonUrl) { * Get ogColonUrl * @return ogColonUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_COLON_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,7 +91,7 @@ public ListMessagesResponseMessagesInnerOgTag ogColonTitle(String ogColonTitle) * Get ogColonTitle * @return ogColonTitle **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_COLON_TITLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public ListMessagesResponseMessagesInnerOgTag ogColonDescription(String ogColonD * Get ogColonDescription * @return ogColonDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_COLON_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public ListMessagesResponseMessagesInnerOgTag ogColonImage(ListMessagesResponseM * Get ogColonImage * @return ogColonImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_COLON_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTagOgImage.java b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTagOgImage.java index 82ded53d..b9d55f38 100644 --- a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTagOgImage.java +++ b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerOgTagOgImage.java @@ -39,7 +39,7 @@ ListMessagesResponseMessagesInnerOgTagOgImage.JSON_PROPERTY_HEIGHT }) @JsonTypeName("listMessagesResponse_messages_inner_og_tag_og_image") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMessagesResponseMessagesInnerOgTagOgImage { public static final String JSON_PROPERTY_URL = "url"; private String url; @@ -65,7 +65,7 @@ public ListMessagesResponseMessagesInnerOgTagOgImage url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,7 +91,7 @@ public ListMessagesResponseMessagesInnerOgTagOgImage secureUrl(String secureUrl) * Get secureUrl * @return secureUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SECURE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public ListMessagesResponseMessagesInnerOgTagOgImage width(BigDecimal width) { * Get width * @return width **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WIDTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public ListMessagesResponseMessagesInnerOgTagOgImage height(BigDecimal height) { * Get height * @return height **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HEIGHT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerSortedMetaarrayInner.java b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerSortedMetaarrayInner.java index 79d346d9..23034764 100644 --- a/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerSortedMetaarrayInner.java +++ b/src/main/java/org/openapitools/client/model/ListMessagesResponseMessagesInnerSortedMetaarrayInner.java @@ -38,7 +38,7 @@ ListMessagesResponseMessagesInnerSortedMetaarrayInner.JSON_PROPERTY_VALUE }) @JsonTypeName("listMessagesResponse_messages_inner_sorted_metaarray_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMessagesResponseMessagesInnerSortedMetaarrayInner { public static final String JSON_PROPERTY_KEY = "key"; private String key; @@ -58,7 +58,7 @@ public ListMessagesResponseMessagesInnerSortedMetaarrayInner key(String key) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public ListMessagesResponseMessagesInnerSortedMetaarrayInner addValueItem(String * Get value * @return value **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMutedChannelsResponse.java b/src/main/java/org/openapitools/client/model/ListMutedChannelsResponse.java index ca4ace4e..27c0f011 100644 --- a/src/main/java/org/openapitools/client/model/ListMutedChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListMutedChannelsResponse.java @@ -39,7 +39,7 @@ ListMutedChannelsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listMutedChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMutedChannelsResponse { public static final String JSON_PROPERTY_MUTED_CHANNELS = "muted_channels"; private List mutedChannels = null; @@ -67,7 +67,7 @@ public ListMutedChannelsResponse addMutedChannelsItem(SendBirdChannelResponse mu * Get mutedChannels * @return mutedChannels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListMutedChannelsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMutedUsersInChannelsWithCustomChannelType200Response.java b/src/main/java/org/openapitools/client/model/ListMutedUsersInChannelsWithCustomChannelType200Response.java index 5af4fc0e..b5f30c7c 100644 --- a/src/main/java/org/openapitools/client/model/ListMutedUsersInChannelsWithCustomChannelType200Response.java +++ b/src/main/java/org/openapitools/client/model/ListMutedUsersInChannelsWithCustomChannelType200Response.java @@ -39,7 +39,7 @@ ListMutedUsersInChannelsWithCustomChannelType200Response.JSON_PROPERTY_NEXT }) @JsonTypeName("listMutedUsersInChannelsWithCustomChannelType_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMutedUsersInChannelsWithCustomChannelType200Response { public static final String JSON_PROPERTY_MUTED_LIST = "muted_list"; private List mutedList = null; @@ -67,7 +67,7 @@ public ListMutedUsersInChannelsWithCustomChannelType200Response addMutedListItem * Get mutedList * @return mutedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListMutedUsersInChannelsWithCustomChannelType200Response next(String next * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListMyGroupChannelsResponse.java b/src/main/java/org/openapitools/client/model/ListMyGroupChannelsResponse.java index cd8ca264..e4d777d3 100644 --- a/src/main/java/org/openapitools/client/model/ListMyGroupChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListMyGroupChannelsResponse.java @@ -41,7 +41,7 @@ ListMyGroupChannelsResponse.JSON_PROPERTY_TS }) @JsonTypeName("listMyGroupChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListMyGroupChannelsResponse { public static final String JSON_PROPERTY_CHANNELS = "channels"; private List channels = null; @@ -72,7 +72,7 @@ public ListMyGroupChannelsResponse addChannelsItem(SendBirdGroupChannel channels * Get channels * @return channels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public ListMyGroupChannelsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public ListMyGroupChannelsResponse ts(BigDecimal ts) { * Get ts * @return ts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponse.java b/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponse.java index db3daaf2..f6ffb0e7 100644 --- a/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponse.java @@ -38,7 +38,7 @@ ListPushConfigurationsResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("listPushConfigurationsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListPushConfigurationsResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -63,7 +63,7 @@ public ListPushConfigurationsResponse addPushConfigurationsItem(ListPushConfigur * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponsePushConfigurationsInner.java b/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponsePushConfigurationsInner.java index d6c18cf5..e3078484 100644 --- a/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponsePushConfigurationsInner.java +++ b/src/main/java/org/openapitools/client/model/ListPushConfigurationsResponsePushConfigurationsInner.java @@ -41,7 +41,7 @@ ListPushConfigurationsResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("listPushConfigurationsResponse_push_configurations_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListPushConfigurationsResponsePushConfigurationsInner { public static final String JSON_PROPERTY_ID = "id"; private String id; @@ -73,7 +73,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner id(String id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner pushType(String pus * Get pushType * @return pushType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner createdAt(BigDecima * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner apiKey(String apiKe * Get apiKey * @return apiKey **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_API_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner senderId(String sen * Get senderId * @return senderId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public ListPushConfigurationsResponsePushConfigurationsInner pushSound(String pu * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponse.java b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponse.java index 50fbe8be..6a6b4801 100644 --- a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponse.java +++ b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponse.java @@ -38,7 +38,7 @@ ListPushNotificationContentTemplatesResponse.JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES }) @JsonTypeName("listPushNotificationContentTemplatesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListPushNotificationContentTemplatesResponse { public static final String JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES = "push_message_templates"; private List pushMessageTemplates = null; @@ -63,7 +63,7 @@ public ListPushNotificationContentTemplatesResponse addPushMessageTemplatesItem( * Get pushMessageTemplates * @return pushMessageTemplates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner.java b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner.java index 278238b6..33715cf0 100644 --- a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner.java +++ b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner.java @@ -37,7 +37,7 @@ ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner.JSON_PROPERTY_TEMPLATE }) @JsonTypeName("listPushNotificationContentTemplatesResponse_push_message_templates_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner { public static final String JSON_PROPERTY_TEMPLATE_NAME = "template_name"; private String templateName; @@ -57,7 +57,7 @@ public ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner tem * Get templateName * @return templateName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TEMPLATE_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public ListPushNotificationContentTemplatesResponsePushMessageTemplatesInner tem * Get template * @return template **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TEMPLATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate.java b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate.java index ad95f2c4..75009de3 100644 --- a/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate.java +++ b/src/main/java/org/openapitools/client/model/ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate.java @@ -37,7 +37,7 @@ ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate.JSON_PROPERTY_A_D_M_M }) @JsonTypeName("listPushNotificationContentTemplatesResponse_push_message_templates_inner_template") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemplate { public static final String JSON_PROPERTY_M_E_S_G = "MESG"; private String MESG; @@ -60,7 +60,7 @@ public ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemp * Get MESG * @return MESG **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_M_E_S_G) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,7 +86,7 @@ public ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemp * Get FILE * @return FILE **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_F_I_L_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public ListPushNotificationContentTemplatesResponsePushMessageTemplatesInnerTemp * Get ADMM * @return ADMM **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_A_D_M_M) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReactionsOfMessageResponse.java b/src/main/java/org/openapitools/client/model/ListReactionsOfMessageResponse.java index 3bae9fbf..0a6c023a 100644 --- a/src/main/java/org/openapitools/client/model/ListReactionsOfMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/ListReactionsOfMessageResponse.java @@ -37,7 +37,7 @@ ListReactionsOfMessageResponse.JSON_PROPERTY_KEY }) @JsonTypeName("listReactionsOfMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReactionsOfMessageResponse { public static final String JSON_PROPERTY_KEY = "key"; private List key = null; @@ -62,7 +62,7 @@ public ListReactionsOfMessageResponse addKeyItem(String keyItem) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListRegistrationOrDeviceTokensResponse.java b/src/main/java/org/openapitools/client/model/ListRegistrationOrDeviceTokensResponse.java index 9487c5e4..4fa547a6 100644 --- a/src/main/java/org/openapitools/client/model/ListRegistrationOrDeviceTokensResponse.java +++ b/src/main/java/org/openapitools/client/model/ListRegistrationOrDeviceTokensResponse.java @@ -41,7 +41,7 @@ ListRegistrationOrDeviceTokensResponse.JSON_PROPERTY_USER }) @JsonTypeName("listRegistrationOrDeviceTokensResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListRegistrationOrDeviceTokensResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private List token = null; @@ -75,7 +75,7 @@ public ListRegistrationOrDeviceTokensResponse addTokenItem(String tokenItem) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -109,7 +109,7 @@ public ListRegistrationOrDeviceTokensResponse addTokensItem(String tokensItem) { * Get tokens * @return tokens **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKENS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,7 +135,7 @@ public ListRegistrationOrDeviceTokensResponse type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,7 +161,7 @@ public ListRegistrationOrDeviceTokensResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsOnChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/ListReportsOnChannelByUrlResponse.java index 9b6cc03b..42a78008 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsOnChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/ListReportsOnChannelByUrlResponse.java @@ -39,7 +39,7 @@ ListReportsOnChannelByUrlResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listReportsOnChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsOnChannelByUrlResponse { public static final String JSON_PROPERTY_REPORT_LOGS = "report_logs"; private List reportLogs = null; @@ -67,7 +67,7 @@ public ListReportsOnChannelByUrlResponse addReportLogsItem(ListReportsOnMessageB * Get reportLogs * @return reportLogs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_LOGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListReportsOnChannelByUrlResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponse.java b/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponse.java index 6cedb5e9..0c9199c8 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponse.java @@ -39,7 +39,7 @@ ListReportsOnMessageByIdResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listReportsOnMessageByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsOnMessageByIdResponse { public static final String JSON_PROPERTY_REPORT_LOGS = "report_logs"; private List reportLogs = null; @@ -67,7 +67,7 @@ public ListReportsOnMessageByIdResponse addReportLogsItem(ListReportsOnMessageBy * Get reportLogs * @return reportLogs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_LOGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListReportsOnMessageByIdResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponseReportLogsInner.java b/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponseReportLogsInner.java index 7cbdee6f..8054e6c4 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponseReportLogsInner.java +++ b/src/main/java/org/openapitools/client/model/ListReportsOnMessageByIdResponseReportLogsInner.java @@ -50,7 +50,7 @@ ListReportsOnMessageByIdResponseReportLogsInner.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("listReportsOnMessageByIdResponse_report_logs_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsOnMessageByIdResponseReportLogsInner { public static final String JSON_PROPERTY_REPORT_TYPE = "report_type"; private String reportType; @@ -88,7 +88,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner reportType(String reportT * Get reportType * @return reportType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner reportCategory(String rep * Get reportCategory * @return reportCategory **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,7 +140,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner reportingUser(SendBirdUse * Get reportingUser * @return reportingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORTING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,7 +166,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner offendingUser(SendBirdUse * Get offendingUser * @return offendingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OFFENDING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -192,7 +192,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner reportedMessage(SendBirdM * Get reportedMessage * @return reportedMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -226,7 +226,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner channel(SendBirdChannelRe * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,7 +252,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner reportDescription(String * Get reportDescription * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public ListReportsOnMessageByIdResponseReportLogsInner createdAt(BigDecimal crea * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsOnUserByIdResponse.java b/src/main/java/org/openapitools/client/model/ListReportsOnUserByIdResponse.java index c28d22bd..07550a50 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsOnUserByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ListReportsOnUserByIdResponse.java @@ -39,7 +39,7 @@ ListReportsOnUserByIdResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listReportsOnUserByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsOnUserByIdResponse { public static final String JSON_PROPERTY_REPORT_LOGS = "report_logs"; private List reportLogs = null; @@ -67,7 +67,7 @@ public ListReportsOnUserByIdResponse addReportLogsItem(ListReportsOnMessageByIdR * Get reportLogs * @return reportLogs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_LOGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListReportsOnUserByIdResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsResponse.java b/src/main/java/org/openapitools/client/model/ListReportsResponse.java index 8ca79a1b..de6f243d 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsResponse.java +++ b/src/main/java/org/openapitools/client/model/ListReportsResponse.java @@ -39,7 +39,7 @@ ListReportsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listReportsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsResponse { public static final String JSON_PROPERTY_REPORT_LOGS = "report_logs"; private List reportLogs = null; @@ -67,7 +67,7 @@ public ListReportsResponse addReportLogsItem(ListReportsResponseReportLogsInner * Get reportLogs * @return reportLogs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_LOGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListReportsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListReportsResponseReportLogsInner.java b/src/main/java/org/openapitools/client/model/ListReportsResponseReportLogsInner.java index 8771c5ef..d06e9e9e 100644 --- a/src/main/java/org/openapitools/client/model/ListReportsResponseReportLogsInner.java +++ b/src/main/java/org/openapitools/client/model/ListReportsResponseReportLogsInner.java @@ -50,7 +50,7 @@ ListReportsResponseReportLogsInner.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("listReportsResponse_report_logs_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListReportsResponseReportLogsInner { public static final String JSON_PROPERTY_REPORTING_USER = "reporting_user"; private SendBirdUser reportingUser; @@ -88,7 +88,7 @@ public ListReportsResponseReportLogsInner reportingUser(SendBirdUser reportingUs * Get reportingUser * @return reportingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORTING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public ListReportsResponseReportLogsInner reportType(String reportType) { * Get reportType * @return reportType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,7 +140,7 @@ public ListReportsResponseReportLogsInner reportCategory(String reportCategory) * Get reportCategory * @return reportCategory **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,7 +166,7 @@ public ListReportsResponseReportLogsInner offendingUser(SendBirdUser offendingUs * Get offendingUser * @return offendingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OFFENDING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -192,7 +192,7 @@ public ListReportsResponseReportLogsInner reportedMessage(SendBirdMessageRespons * Get reportedMessage * @return reportedMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -226,7 +226,7 @@ public ListReportsResponseReportLogsInner channel(SendBirdChannelResponse channe * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,7 +252,7 @@ public ListReportsResponseReportLogsInner reportDescription(String reportDescrip * Get reportDescription * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public ListReportsResponseReportLogsInner createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponse.java b/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponse.java index b0e85cbb..4ccc8d75 100644 --- a/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponse.java +++ b/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponse.java @@ -38,7 +38,7 @@ ListSecondaryApiTokensResponse.JSON_PROPERTY_API_TOKENS }) @JsonTypeName("listSecondaryApiTokensResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListSecondaryApiTokensResponse { public static final String JSON_PROPERTY_API_TOKENS = "api_tokens"; private List apiTokens = null; @@ -63,7 +63,7 @@ public ListSecondaryApiTokensResponse addApiTokensItem(ListSecondaryApiTokensRes * Get apiTokens * @return apiTokens **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_API_TOKENS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponseApiTokensInner.java b/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponseApiTokensInner.java index 9392668c..d85e7516 100644 --- a/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponseApiTokensInner.java +++ b/src/main/java/org/openapitools/client/model/ListSecondaryApiTokensResponseApiTokensInner.java @@ -37,7 +37,7 @@ ListSecondaryApiTokensResponseApiTokensInner.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("listSecondaryApiTokensResponse_api_tokens_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListSecondaryApiTokensResponseApiTokensInner { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -57,7 +57,7 @@ public ListSecondaryApiTokensResponseApiTokensInner token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public ListSecondaryApiTokensResponseApiTokensInner createdAt(BigDecimal created * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ListUsersResponse.java b/src/main/java/org/openapitools/client/model/ListUsersResponse.java index 8dbc5bfc..06ad5169 100644 --- a/src/main/java/org/openapitools/client/model/ListUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/ListUsersResponse.java @@ -39,7 +39,7 @@ ListUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("listUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ListUsersResponse { public static final String JSON_PROPERTY_USERS = "users"; private List users = null; @@ -67,7 +67,7 @@ public ListUsersResponse addUsersItem(SendBirdUser usersItem) { * Get users * @return users **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public ListUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/MarkAllMessagesAsReadData.java b/src/main/java/org/openapitools/client/model/MarkAllMessagesAsReadData.java index d7544a0d..3ead2719 100644 --- a/src/main/java/org/openapitools/client/model/MarkAllMessagesAsReadData.java +++ b/src/main/java/org/openapitools/client/model/MarkAllMessagesAsReadData.java @@ -37,7 +37,7 @@ MarkAllMessagesAsReadData.JSON_PROPERTY_CHANNEL_URLS }) @JsonTypeName("markAllMessagesAsReadData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class MarkAllMessagesAsReadData { public static final String JSON_PROPERTY_CHANNEL_URLS = "channel_urls"; private List channelUrls = new ArrayList<>(); @@ -59,7 +59,7 @@ public MarkAllMessagesAsReadData addChannelUrlsItem(String channelUrlsItem) { * Specifies an array of one or more group channel URLs to mark all of the unread messages in as read. If not specified, all of the unread messages in the joined group channels are marked as read. * @return channelUrls **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more group channel URLs to mark all of the unread messages in as read. If not specified, all of the unread messages in the joined group channels are marked as read.") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/ModelFile.java b/src/main/java/org/openapitools/client/model/ModelFile.java index ab537a84..b2d5a8f4 100644 --- a/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/src/main/java/org/openapitools/client/model/ModelFile.java @@ -40,7 +40,7 @@ ModelFile.JSON_PROPERTY_WEBKIT_RELATIVE_PATH }) @JsonTypeName("File") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ModelFile { public static final String JSON_PROPERTY_LAST_MODIFIED = "last_modified"; private BigDecimal lastModified; @@ -69,7 +69,7 @@ public ModelFile lastModified(BigDecimal lastModified) { * Get lastModified * @return lastModified **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_MODIFIED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -95,7 +95,7 @@ public ModelFile name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,7 +121,7 @@ public ModelFile size(BigDecimal size) { * Get size * @return size **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,7 +147,7 @@ public ModelFile type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public ModelFile webkitRelativePath(String webkitRelativePath) { * Get webkitRelativePath * @return webkitRelativePath **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEBKIT_RELATIVE_PATH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/MuteInChannelsWithCustomChannelTypesData.java b/src/main/java/org/openapitools/client/model/MuteInChannelsWithCustomChannelTypesData.java index 18bade74..60824769 100644 --- a/src/main/java/org/openapitools/client/model/MuteInChannelsWithCustomChannelTypesData.java +++ b/src/main/java/org/openapitools/client/model/MuteInChannelsWithCustomChannelTypesData.java @@ -37,7 +37,7 @@ MuteInChannelsWithCustomChannelTypesData.JSON_PROPERTY_CHANNEL_CUSTOM_TYPES }) @JsonTypeName("muteInChannelsWithCustomChannelTypesData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class MuteInChannelsWithCustomChannelTypesData { public static final String JSON_PROPERTY_CHANNEL_CUSTOM_TYPES = "channel_custom_types"; private List channelCustomTypes = new ArrayList<>(); @@ -59,7 +59,7 @@ public MuteInChannelsWithCustomChannelTypesData addChannelCustomTypesItem(String * Specifies an array of one or more custom channel types, in order to mute the user in channels with the channel types. The user is permanently muted unless unmuted (10 years, technically). * @return channelCustomTypes **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more custom channel types, in order to mute the user in channels with the channel types. The user is permanently muted unless unmuted (10 years, technically).") @JsonProperty(JSON_PROPERTY_CHANNEL_CUSTOM_TYPES) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/MuteUsersInChannelsWithCustomChannelTypeData.java b/src/main/java/org/openapitools/client/model/MuteUsersInChannelsWithCustomChannelTypeData.java index 9b78d94c..3724f4b4 100644 --- a/src/main/java/org/openapitools/client/model/MuteUsersInChannelsWithCustomChannelTypeData.java +++ b/src/main/java/org/openapitools/client/model/MuteUsersInChannelsWithCustomChannelTypeData.java @@ -41,7 +41,7 @@ MuteUsersInChannelsWithCustomChannelTypeData.JSON_PROPERTY_ON_DEMAND_UPSERT }) @JsonTypeName("muteUsersInChannelsWithCustomChannelTypeData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class MuteUsersInChannelsWithCustomChannelTypeData { public static final String JSON_PROPERTY_USER_IDS = "user_ids"; private List userIds = new ArrayList<>(); @@ -72,7 +72,7 @@ public MuteUsersInChannelsWithCustomChannelTypeData addUserIdsItem(String userId * Get userIds * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -98,7 +98,7 @@ public MuteUsersInChannelsWithCustomChannelTypeData seconds(BigDecimal seconds) * Get seconds * @return seconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public MuteUsersInChannelsWithCustomChannelTypeData description(String descripti * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,7 +150,7 @@ public MuteUsersInChannelsWithCustomChannelTypeData onDemandUpsert(Boolean onDem * Get onDemandUpsert * @return onDemandUpsert **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ON_DEMAND_UPSERT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcBanUserData.java b/src/main/java/org/openapitools/client/model/OcBanUserData.java index 09af3ae3..b9ca0353 100644 --- a/src/main/java/org/openapitools/client/model/OcBanUserData.java +++ b/src/main/java/org/openapitools/client/model/OcBanUserData.java @@ -39,7 +39,7 @@ OcBanUserData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("ocBanUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcBanUserData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -68,7 +68,7 @@ public OcBanUserData channelUrl(String channelUrl) { * Specifies the URL of the channel where to ban the specified user. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel where to ban the specified user.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,7 +94,7 @@ public OcBanUserData userId(String userId) { * Specifies the ID of the user to ban. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the user to ban.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,7 +120,7 @@ public OcBanUserData agentId(String agentId) { * Specifies the ID of the operator (agent) who bans the user. * @return agentId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the operator (agent) who bans the user.") @JsonProperty(JSON_PROPERTY_AGENT_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public OcBanUserData seconds(Integer seconds) { * Specifies the ban duration. If set to -1, the user will be banned permanently (10 years, technically). (Default: -1) * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ban duration. If set to -1, the user will be banned permanently (10 years, technically). (Default: -1)") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,7 +172,7 @@ public OcBanUserData description(String description) { * Specifies a reason for the banning. The length is limited to 250 characters. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a reason for the banning. The length is limited to 250 characters.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcBanUserResponse.java b/src/main/java/org/openapitools/client/model/OcBanUserResponse.java index 115adbf3..1b609efb 100644 --- a/src/main/java/org/openapitools/client/model/OcBanUserResponse.java +++ b/src/main/java/org/openapitools/client/model/OcBanUserResponse.java @@ -47,7 +47,7 @@ OcBanUserResponse.JSON_PROPERTY_METADATA }) @JsonTypeName("ocBanUserResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcBanUserResponse { public static final String JSON_PROPERTY_START_AT = "start_at"; private BigDecimal startAt; @@ -91,7 +91,7 @@ public OcBanUserResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public OcBanUserResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public OcBanUserResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,7 +169,7 @@ public OcBanUserResponse userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -195,7 +195,7 @@ public OcBanUserResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -221,7 +221,7 @@ public OcBanUserResponse nextUrl(String nextUrl) { * Get nextUrl * @return nextUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,7 +247,7 @@ public OcBanUserResponse requireAuthForProfileImage(Boolean requireAuthForProfil * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -273,7 +273,7 @@ public OcBanUserResponse nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -299,7 +299,7 @@ public OcBanUserResponse profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -325,7 +325,7 @@ public OcBanUserResponse metadata(OcDeleteChannelByUrl200Response metadata) { * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcCreateChannelData.java b/src/main/java/org/openapitools/client/model/OcCreateChannelData.java index 12e012ba..523e744d 100644 --- a/src/main/java/org/openapitools/client/model/OcCreateChannelData.java +++ b/src/main/java/org/openapitools/client/model/OcCreateChannelData.java @@ -47,7 +47,7 @@ OcCreateChannelData.JSON_PROPERTY_OPERATORS }) @JsonTypeName("ocCreateChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcCreateChannelData { public static final String JSON_PROPERTY_NAME = "name"; private String name; @@ -91,7 +91,7 @@ public OcCreateChannelData name(String name) { * Specifies the channel topic, or the name of the channel. The length is limited to 191 characters. (Default: open channel) * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the channel topic, or the name of the channel. The length is limited to 191 characters. (Default: open channel)") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public OcCreateChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel. Only numbers, characters, and underscores are allowed. The length is 4 to 100 characters, inclusive. If not specified, a URL is automatically generated. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel. Only numbers, characters, and underscores are allowed. The length is 4 to 100 characters, inclusive. If not specified, a URL is automatically generated.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public OcCreateChannelData coverUrl(String coverUrl) { * Specifies the URL of the cover image. The length is limited to 2,048 characters. * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the cover image. The length is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,7 +169,7 @@ public OcCreateChannelData coverFile(File coverFile) { * Uploads a file for the channel cover image. * @return coverFile **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Uploads a file for the channel cover image.") @JsonProperty(JSON_PROPERTY_COVER_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -195,7 +195,7 @@ public OcCreateChannelData customType(String customType) { * Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -221,7 +221,7 @@ public OcCreateChannelData data(String data) { * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,7 +247,7 @@ public OcCreateChannelData isEphemeral(Boolean isEphemeral) { * Determines whether to preserve the messages in the channel for the purpose of retrieving chat history or not. It set to true, the messages in the channel are not saved in the Sendbird database and the chat history can't be retrieved. (Default: false) * @return isEphemeral **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to preserve the messages in the channel for the purpose of retrieving chat history or not. It set to true, the messages in the channel are not saved in the Sendbird database and the chat history can't be retrieved. (Default: false)") @JsonProperty(JSON_PROPERTY_IS_EPHEMERAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -273,7 +273,7 @@ public OcCreateChannelData isDynamicPartitionedHash2HowDynamicPartitioningWorks( * Determines whether the channel is an open channel with dynamic partitioning or not. If the value of this property is true, the open channel can create several subchannels in order to accommodate a massive number of usres. (Default: false)<br/><br/> For the new Sendbird applications created after December 15, 2020, this property will be automatically set to true. * @return isDynamicPartitionedHash2HowDynamicPartitioningWorks **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether the channel is an open channel with dynamic partitioning or not. If the value of this property is true, the open channel can create several subchannels in order to accommodate a massive number of usres. (Default: false)

For the new Sendbird applications created after December 15, 2020, this property will be automatically set to true.") @JsonProperty(JSON_PROPERTY_IS_DYNAMIC_PARTITIONED_HASH2_HOW_DYNAMIC_PARTITIONING_WORKS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -307,7 +307,7 @@ public OcCreateChannelData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more user IDs to register as operators of the channel. The maximum allowed number of operators per channel is 100. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.<br/><br/> Operators cannot view messages that have been [moderated by](/docs/chat/v3/platform-api/guides/filter-and-moderation) the domain filter or profanity filter. Only the sender will be notified that the message has been blocked. * @return operatorIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more user IDs to register as operators of the channel. The maximum allowed number of operators per channel is 100. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.

Operators cannot view messages that have been [moderated by](/docs/chat/v3/platform-api/guides/filter-and-moderation) the domain filter or profanity filter. Only the sender will be notified that the message has been blocked.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -341,7 +341,7 @@ public OcCreateChannelData addOperatorsItem(String operatorsItem) { * (Deprecated) Specifies the string IDs of the users registered as channel operators. Operators can delete any messages in the channel, and can also receive all messages that have been throttled. * @return operators **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "(Deprecated) Specifies the string IDs of the users registered as channel operators. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcDeleteChannelByUrl200Response.java b/src/main/java/org/openapitools/client/model/OcDeleteChannelByUrl200Response.java index c65fa244..9d7f5d46 100644 --- a/src/main/java/org/openapitools/client/model/OcDeleteChannelByUrl200Response.java +++ b/src/main/java/org/openapitools/client/model/OcDeleteChannelByUrl200Response.java @@ -35,7 +35,7 @@ OcDeleteChannelByUrl200Response.JSON_PROPERTY_ANY_OF }) @JsonTypeName("ocDeleteChannelByUrl_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcDeleteChannelByUrl200Response { public static final String JSON_PROPERTY_ANY_OF = "anyOf"; private String anyOf; @@ -52,7 +52,7 @@ public OcDeleteChannelByUrl200Response anyOf(String anyOf) { * Get anyOf * @return anyOf **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANY_OF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcFreezeChannelData.java b/src/main/java/org/openapitools/client/model/OcFreezeChannelData.java index dfb504f3..d25f6d80 100644 --- a/src/main/java/org/openapitools/client/model/OcFreezeChannelData.java +++ b/src/main/java/org/openapitools/client/model/OcFreezeChannelData.java @@ -36,7 +36,7 @@ OcFreezeChannelData.JSON_PROPERTY_FREEZE }) @JsonTypeName("ocFreezeChannelData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcFreezeChannelData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -56,7 +56,7 @@ public OcFreezeChannelData channelUrl(String channelUrl) { * Specifies the URL of the channel to freeze. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to freeze.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public OcFreezeChannelData freeze(Boolean freeze) { * Determines whether to freeze the channel. (Default: false) * @return freeze **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to freeze the channel. (Default: false)") @JsonProperty(JSON_PROPERTY_FREEZE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcListBannedUsersResponse.java b/src/main/java/org/openapitools/client/model/OcListBannedUsersResponse.java index 7e87b240..8a1d7c6a 100644 --- a/src/main/java/org/openapitools/client/model/OcListBannedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/OcListBannedUsersResponse.java @@ -41,7 +41,7 @@ OcListBannedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("ocListBannedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListBannedUsersResponse { public static final String JSON_PROPERTY_BANNED_LIST = "banned_list"; private List bannedList = null; @@ -72,7 +72,7 @@ public OcListBannedUsersResponse addBannedListItem(OcListBannedUsersResponseBann * Get bannedList * @return bannedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BANNED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public OcListBannedUsersResponse totalBanCount(BigDecimal totalBanCount) { * Get totalBanCount * @return totalBanCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL_BAN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public OcListBannedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcListBannedUsersResponseBannedListInner.java b/src/main/java/org/openapitools/client/model/OcListBannedUsersResponseBannedListInner.java index 2ed95540..ae77091e 100644 --- a/src/main/java/org/openapitools/client/model/OcListBannedUsersResponseBannedListInner.java +++ b/src/main/java/org/openapitools/client/model/OcListBannedUsersResponseBannedListInner.java @@ -40,7 +40,7 @@ OcListBannedUsersResponseBannedListInner.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("ocListBannedUsersResponse_banned_list_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListBannedUsersResponseBannedListInner { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -66,7 +66,7 @@ public OcListBannedUsersResponseBannedListInner user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public OcListBannedUsersResponseBannedListInner startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public OcListBannedUsersResponseBannedListInner endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public OcListBannedUsersResponseBannedListInner description(String description) * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcListChannelsResponse.java b/src/main/java/org/openapitools/client/model/OcListChannelsResponse.java index bc5b7492..402733c0 100644 --- a/src/main/java/org/openapitools/client/model/OcListChannelsResponse.java +++ b/src/main/java/org/openapitools/client/model/OcListChannelsResponse.java @@ -41,7 +41,7 @@ OcListChannelsResponse.JSON_PROPERTY_TS }) @JsonTypeName("ocListChannelsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListChannelsResponse { public static final String JSON_PROPERTY_CHANNELS = "channels"; private List channels = null; @@ -72,7 +72,7 @@ public OcListChannelsResponse addChannelsItem(SendBirdOpenChannel channelsItem) * Get channels * @return channels **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNELS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public OcListChannelsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public OcListChannelsResponse ts(BigDecimal ts) { * Get ts * @return ts **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcListMutedUsersResponse.java b/src/main/java/org/openapitools/client/model/OcListMutedUsersResponse.java index 1ce3356a..0f898e0f 100644 --- a/src/main/java/org/openapitools/client/model/OcListMutedUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/OcListMutedUsersResponse.java @@ -41,7 +41,7 @@ OcListMutedUsersResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("ocListMutedUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListMutedUsersResponse { public static final String JSON_PROPERTY_MUTED_LIST = "muted_list"; private List mutedList = null; @@ -72,7 +72,7 @@ public OcListMutedUsersResponse addMutedListItem(SendBirdUser mutedListItem) { * Get mutedList * @return mutedList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public OcListMutedUsersResponse totalMuteCount(BigDecimal totalMuteCount) { * Get totalMuteCount * @return totalMuteCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL_MUTE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public OcListMutedUsersResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcListOperatorsResponse.java b/src/main/java/org/openapitools/client/model/OcListOperatorsResponse.java index f1e69c2e..028be3dd 100644 --- a/src/main/java/org/openapitools/client/model/OcListOperatorsResponse.java +++ b/src/main/java/org/openapitools/client/model/OcListOperatorsResponse.java @@ -39,7 +39,7 @@ OcListOperatorsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("ocListOperatorsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListOperatorsResponse { public static final String JSON_PROPERTY_OPERATORS = "operators"; private List operators = null; @@ -67,7 +67,7 @@ public OcListOperatorsResponse addOperatorsItem(SendBirdUser operatorsItem) { * Get operators * @return operators **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public OcListOperatorsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcListParticipantsResponse.java b/src/main/java/org/openapitools/client/model/OcListParticipantsResponse.java index 809f33f6..f58c6f42 100644 --- a/src/main/java/org/openapitools/client/model/OcListParticipantsResponse.java +++ b/src/main/java/org/openapitools/client/model/OcListParticipantsResponse.java @@ -39,7 +39,7 @@ OcListParticipantsResponse.JSON_PROPERTY_NEXT }) @JsonTypeName("ocListParticipantsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcListParticipantsResponse { public static final String JSON_PROPERTY_PARTICIPANTS = "participants"; private List participants = null; @@ -67,7 +67,7 @@ public OcListParticipantsResponse addParticipantsItem(SendBirdUser participantsI * Get participants * @return participants **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARTICIPANTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public OcListParticipantsResponse next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcMuteUserData.java b/src/main/java/org/openapitools/client/model/OcMuteUserData.java index 64d2bda1..3968c700 100644 --- a/src/main/java/org/openapitools/client/model/OcMuteUserData.java +++ b/src/main/java/org/openapitools/client/model/OcMuteUserData.java @@ -37,7 +37,7 @@ OcMuteUserData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("ocMuteUserData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcMuteUserData { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -60,7 +60,7 @@ public OcMuteUserData userId(String userId) { * Specifies the ID of the target user to mute. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the target user to mute.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public OcMuteUserData seconds(Integer seconds) { * Specifies the duration of mute status. If set to -1, the user will be muted permanently (10 years, technically). (Default: -1) * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the duration of mute status. If set to -1, the user will be muted permanently (10 years, technically). (Default: -1)") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public OcMuteUserData description(String description) { * Specifies a reason for the muting. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a reason for the muting.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcRegisterOperatorsData.java b/src/main/java/org/openapitools/client/model/OcRegisterOperatorsData.java index 849bbc50..dd299e89 100644 --- a/src/main/java/org/openapitools/client/model/OcRegisterOperatorsData.java +++ b/src/main/java/org/openapitools/client/model/OcRegisterOperatorsData.java @@ -38,7 +38,7 @@ OcRegisterOperatorsData.JSON_PROPERTY_OPERATOR_IDS }) @JsonTypeName("ocRegisterOperatorsData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcRegisterOperatorsData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -58,7 +58,7 @@ public OcRegisterOperatorsData channelUrl(String channelUrl) { * Specifies the URL of the channel to register operators to. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to register operators to.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,7 +89,7 @@ public OcRegisterOperatorsData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more IDs of users to register as operators of the channel. The maximum allowed number of operators per channel is 100. * @return operatorIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of users to register as operators of the channel. The maximum allowed number of operators per channel is 100.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcUpdateBanByIdData.java b/src/main/java/org/openapitools/client/model/OcUpdateBanByIdData.java index eeb449ff..220f2451 100644 --- a/src/main/java/org/openapitools/client/model/OcUpdateBanByIdData.java +++ b/src/main/java/org/openapitools/client/model/OcUpdateBanByIdData.java @@ -38,7 +38,7 @@ OcUpdateBanByIdData.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("ocUpdateBanByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcUpdateBanByIdData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -64,7 +64,7 @@ public OcUpdateBanByIdData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public OcUpdateBanByIdData bannedUserId(String bannedUserId) { * Specifies the ID of the banned user to update. * @return bannedUserId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the banned user to update.") @JsonProperty(JSON_PROPERTY_BANNED_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public OcUpdateBanByIdData seconds(Integer seconds) { * Specifies a new ban duration to update. If set to -1, the user will be banned permanently (10 years, technically). * @return seconds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a new ban duration to update. If set to -1, the user will be banned permanently (10 years, technically).") @JsonProperty(JSON_PROPERTY_SECONDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public OcUpdateBanByIdData description(String description) { * Specifies a new reason for the banning to update. The length is limited to 250 characters. * @return description **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a new reason for the banning to update. The length is limited to 250 characters.") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcUpdateBanByIdResponse.java b/src/main/java/org/openapitools/client/model/OcUpdateBanByIdResponse.java index 5c29c7b7..5fa7b5bb 100644 --- a/src/main/java/org/openapitools/client/model/OcUpdateBanByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/OcUpdateBanByIdResponse.java @@ -40,7 +40,7 @@ OcUpdateBanByIdResponse.JSON_PROPERTY_START_AT }) @JsonTypeName("ocUpdateBanByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcUpdateBanByIdResponse { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -66,7 +66,7 @@ public OcUpdateBanByIdResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public OcUpdateBanByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public OcUpdateBanByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public OcUpdateBanByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcUpdateChannelByUrlData.java b/src/main/java/org/openapitools/client/model/OcUpdateChannelByUrlData.java index 4603d637..74289867 100644 --- a/src/main/java/org/openapitools/client/model/OcUpdateChannelByUrlData.java +++ b/src/main/java/org/openapitools/client/model/OcUpdateChannelByUrlData.java @@ -45,7 +45,7 @@ OcUpdateChannelByUrlData.JSON_PROPERTY_OPERATORS }) @JsonTypeName("ocUpdateChannelByUrlData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcUpdateChannelByUrlData { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -83,7 +83,7 @@ public OcUpdateChannelByUrlData channelUrl(String channelUrl) { * Specifies the URL of the channel to update. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel to update.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -109,7 +109,7 @@ public OcUpdateChannelByUrlData name(String name) { * Specifies the channel topic, or the name of the channel. The length is limited to 191 characters. * @return name **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the channel topic, or the name of the channel. The length is limited to 191 characters.") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -135,7 +135,7 @@ public OcUpdateChannelByUrlData coverUrl(String coverUrl) { * Specifies the URL of the cover image. The length is limited to 2,048 characters. * @return coverUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the cover image. The length is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -161,7 +161,7 @@ public OcUpdateChannelByUrlData coverFile(File coverFile) { * Uploads the file for the channel cover image. * @return coverFile **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Uploads the file for the channel cover image.") @JsonProperty(JSON_PROPERTY_COVER_FILE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -187,7 +187,7 @@ public OcUpdateChannelByUrlData customType(String customType) { * Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the custom channel type which is used for channel grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -213,7 +213,7 @@ public OcUpdateChannelByUrlData data(String data) { * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return data **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -244,7 +244,7 @@ public OcUpdateChannelByUrlData addOperatorIdsItem(String operatorIdsItem) { * Specifies an array of one or more user IDs to register as operators of the channel. The maximum allowed number of operators per channel is 100. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.<br/><br/> Operators cannot view messages that have been [moderated by](/docs/chat/v3/platform-api/guides/filter-and-moderation) the domain filter or profanity filter. Only the sender will be notified that the message has been blocked. * @return operatorIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more user IDs to register as operators of the channel. The maximum allowed number of operators per channel is 100. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.

Operators cannot view messages that have been [moderated by](/docs/chat/v3/platform-api/guides/filter-and-moderation) the domain filter or profanity filter. Only the sender will be notified that the message has been blocked.") @JsonProperty(JSON_PROPERTY_OPERATOR_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -275,7 +275,7 @@ public OcUpdateChannelByUrlData addOperatorsItem(String operatorsItem) { * (Deprecated) Specifies the string IDs of the users registered as channel operators. Operators can delete any messages in the channel, and can also receive all messages that have been throttled. * @return operators **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "(Deprecated) Specifies the string IDs of the users registered as channel operators. Operators can delete any messages in the channel, and can also receive all messages that have been throttled.") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/OcViewBanByIdResponse.java b/src/main/java/org/openapitools/client/model/OcViewBanByIdResponse.java index 28312fc5..66462c55 100644 --- a/src/main/java/org/openapitools/client/model/OcViewBanByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/OcViewBanByIdResponse.java @@ -40,7 +40,7 @@ OcViewBanByIdResponse.JSON_PROPERTY_START_AT }) @JsonTypeName("ocViewBanByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcViewBanByIdResponse { public static final String JSON_PROPERTY_USER = "user"; private SendBirdUser user; @@ -66,7 +66,7 @@ public OcViewBanByIdResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public OcViewBanByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,7 +118,7 @@ public OcViewBanByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -144,7 +144,7 @@ public OcViewBanByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/OcViewMuteByIdResponse.java b/src/main/java/org/openapitools/client/model/OcViewMuteByIdResponse.java index a859485c..6b9a5a2d 100644 --- a/src/main/java/org/openapitools/client/model/OcViewMuteByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/OcViewMuteByIdResponse.java @@ -40,7 +40,7 @@ OcViewMuteByIdResponse.JSON_PROPERTY_DESCRIPTION }) @JsonTypeName("ocViewMuteByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OcViewMuteByIdResponse { public static final String JSON_PROPERTY_IS_MUTED = "is_muted"; private Boolean isMuted; @@ -69,7 +69,7 @@ public OcViewMuteByIdResponse isMuted(Boolean isMuted) { * Get isMuted * @return isMuted **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_MUTED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -95,7 +95,7 @@ public OcViewMuteByIdResponse remainingDuration(BigDecimal remainingDuration) { * Get remainingDuration * @return remainingDuration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REMAINING_DURATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,7 +121,7 @@ public OcViewMuteByIdResponse startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,7 +147,7 @@ public OcViewMuteByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public OcViewMuteByIdResponse description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportData.java b/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportData.java index e5d5e2a1..bfe75204 100644 --- a/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportData.java +++ b/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportData.java @@ -49,7 +49,7 @@ RegisterAndScheduleDataExportData.JSON_PROPERTY_NEIGHBORING_MESSAGE_LIMIT }) @JsonTypeName("registerAndScheduleDataExportData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RegisterAndScheduleDataExportData { public static final String JSON_PROPERTY_START_TS = "start_ts"; private Integer startTs; @@ -102,7 +102,7 @@ public RegisterAndScheduleDataExportData startTs(Integer startTs) { * Specifies the starting timestamp of a period for target objects' creation date, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The creation time of messages, channels, and users will be in-between the start_ts and end_ts. * @return startTs **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the starting timestamp of a period for target objects' creation date, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The creation time of messages, channels, and users will be in-between the start_ts and end_ts.") @JsonProperty(JSON_PROPERTY_START_TS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -128,7 +128,7 @@ public RegisterAndScheduleDataExportData endTs(Integer endTs) { * Specifies the ending timestamp of a period for target objects' creation date, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The creation time of messages, channels, and users will be in-between the start_ts and end_ts. * @return endTs **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ending timestamp of a period for target objects' creation date, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The creation time of messages, channels, and users will be in-between the start_ts and end_ts.") @JsonProperty(JSON_PROPERTY_END_TS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -154,7 +154,7 @@ public RegisterAndScheduleDataExportData format(String format) { * Specifies the format of the file to export the messages to. Acceptable values are json and csv. (Default: json) * @return format **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the format of the file to export the messages to. Acceptable values are json and csv. (Default: json)") @JsonProperty(JSON_PROPERTY_FORMAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,7 +180,7 @@ public RegisterAndScheduleDataExportData csvDelimiter(String csvDelimiter) { * Sets a single character delimiter to separate the values in each row of the csv file which stores two-dimensional arrays of the exported message data. Either English alphabets or special characters can be used as a delimiter, including a horizontal tab (\\t), a line feed (\\n), a vertical bar (\\ * @return csvDelimiter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Sets a single character delimiter to separate the values in each row of the csv file which stores two-dimensional arrays of the exported message data. Either English alphabets or special characters can be used as a delimiter, including a horizontal tab (\\t), a line feed (\\n), a vertical bar (\\") @JsonProperty(JSON_PROPERTY_CSV_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -206,7 +206,7 @@ public RegisterAndScheduleDataExportData timezone(String timezone) { * Specifies the timezone to be applied to the timestamp of the exported messages. For example, US/Pacific, Asia/Seoul, Europe/London, etc. (Default: UTC) * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the timezone to be applied to the timestamp of the exported messages. For example, US/Pacific, Asia/Seoul, Europe/London, etc. (Default: UTC)") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -240,7 +240,7 @@ public RegisterAndScheduleDataExportData addSenderIdsItem(String senderIdsItem) * Specifies an array of the IDs of the users which are used to filter the messages by its sender for the export. This property is effective only when the data_type parameter is set to messages, and can be specified up to 10 IDs in the request. (Default: all messages sent by any user) * @return senderIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of the IDs of the users which are used to filter the messages by its sender for the export. This property is effective only when the data_type parameter is set to messages, and can be specified up to 10 IDs in the request. (Default: all messages sent by any user)") @JsonProperty(JSON_PROPERTY_SENDER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -274,7 +274,7 @@ public RegisterAndScheduleDataExportData addExcludeSenderIdsItem(String excludeS * Specifies an array of the IDs of the users which are used to exclude their sent messages from the export. This property is effective only when the data_type parameter is set to messages, and can be specified up to 10 IDs. (Default: all messages sent by any user) * @return excludeSenderIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of the IDs of the users which are used to exclude their sent messages from the export. This property is effective only when the data_type parameter is set to messages, and can be specified up to 10 IDs. (Default: all messages sent by any user)") @JsonProperty(JSON_PROPERTY_EXCLUDE_SENDER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -308,7 +308,7 @@ public RegisterAndScheduleDataExportData addChannelUrlsItem(String channelUrlsIt * Specifies an array of one or more URLs of channels to export the messages from. This property is effective only when the data_type parameter is set to messages or channels. (Default: all channels) * @return channelUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more URLs of channels to export the messages from. This property is effective only when the data_type parameter is set to messages or channels. (Default: all channels)") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -342,7 +342,7 @@ public RegisterAndScheduleDataExportData addExcludeChannelUrlsItem(String exclud * Specifies an array of one or more URLs of channels to exclude when exporting the messages. This property is effective only when the data_type parameter is set to messages or channels. (Default: include all channels) * @return excludeChannelUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more URLs of channels to exclude when exporting the messages. This property is effective only when the data_type parameter is set to messages or channels. (Default: include all channels)") @JsonProperty(JSON_PROPERTY_EXCLUDE_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,7 +376,7 @@ public RegisterAndScheduleDataExportData addUserIdsItem(String userIdsItem) { * Specifies an array of the IDs of the users to export their information. This property is effective only when the data_type parameter is set to users. (Default: all users) * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of the IDs of the users to export their information. This property is effective only when the data_type parameter is set to users. (Default: all users)") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -402,7 +402,7 @@ public RegisterAndScheduleDataExportData showReadReceipt(Boolean showReadReceipt * Determines whether to include information about the read receipts of each channel in the exported data. The read receipt indicates the timestamps of when each user has last read the messages in the channel, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps). (Default: true) * @return showReadReceipt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to include information about the read receipts of each channel in the exported data. The read receipt indicates the timestamps of when each user has last read the messages in the channel, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps). (Default: true)") @JsonProperty(JSON_PROPERTY_SHOW_READ_RECEIPT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -428,7 +428,7 @@ public RegisterAndScheduleDataExportData showChannelMetadata(Boolean showChannel * Determines whether to include [channel metadata](/docs/chat/v3/platform-api/guides/user-and-channel-metadata#2-view-a-channel-metadata) in the result files. * @return showChannelMetadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to include [channel metadata](/docs/chat/v3/platform-api/guides/user-and-channel-metadata#2-view-a-channel-metadata) in the result files.") @JsonProperty(JSON_PROPERTY_SHOW_CHANNEL_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -454,7 +454,7 @@ public RegisterAndScheduleDataExportData neighboringMessageLimit(Integer neighbo * Specifies the maximum number of other users' messages to be exported, which took place after the specified message of a user filtered by the sender_ids property. Even if there may be more messages that took place, if the quantity exceeds the number of the neighboring_message_limit, they are omitted. Only the messages that took place right after the specified message will be counted and exported. This can be used to better analyze the context. Acceptable values are 1 to 10, inclusive. (Default: 0) * @return neighboringMessageLimit **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the maximum number of other users' messages to be exported, which took place after the specified message of a user filtered by the sender_ids property. Even if there may be more messages that took place, if the quantity exceeds the number of the neighboring_message_limit, they are omitted. Only the messages that took place right after the specified message will be counted and exported. This can be used to better analyze the context. Acceptable values are 1 to 10, inclusive. (Default: 0)") @JsonProperty(JSON_PROPERTY_NEIGHBORING_MESSAGE_LIMIT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportResponse.java b/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportResponse.java index 88e3a07c..d7285d90 100644 --- a/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportResponse.java +++ b/src/main/java/org/openapitools/client/model/RegisterAndScheduleDataExportResponse.java @@ -52,7 +52,7 @@ RegisterAndScheduleDataExportResponse.JSON_PROPERTY_USER_IDS }) @JsonTypeName("registerAndScheduleDataExportResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RegisterAndScheduleDataExportResponse { public static final String JSON_PROPERTY_CHANNEL_CUSTOM_TYPES = "channel_custom_types"; private List channelCustomTypes = null; @@ -116,7 +116,7 @@ public RegisterAndScheduleDataExportResponse addChannelCustomTypesItem(String ch * Get channelCustomTypes * @return channelCustomTypes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_CUSTOM_TYPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public RegisterAndScheduleDataExportResponse dataType(String dataType) { * Get dataType * @return dataType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,7 +168,7 @@ public RegisterAndScheduleDataExportResponse requestId(String requestId) { * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,7 +194,7 @@ public RegisterAndScheduleDataExportResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -220,7 +220,7 @@ public RegisterAndScheduleDataExportResponse format(String format) { * Get format * @return format **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FORMAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,7 +246,7 @@ public RegisterAndScheduleDataExportResponse csvDelimiter(String csvDelimiter) { * Get csvDelimiter * @return csvDelimiter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CSV_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -272,7 +272,7 @@ public RegisterAndScheduleDataExportResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -298,7 +298,7 @@ public RegisterAndScheduleDataExportResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -324,7 +324,7 @@ public RegisterAndScheduleDataExportResponse startTs(BigDecimal startTs) { * Get startTs * @return startTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public RegisterAndScheduleDataExportResponse endTs(BigDecimal endTs) { * Get endTs * @return endTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -384,7 +384,7 @@ public RegisterAndScheduleDataExportResponse addChannelUrlsItem(String channelUr * Get channelUrls * @return channelUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -418,7 +418,7 @@ public RegisterAndScheduleDataExportResponse addSenderIdsItem(String senderIdsIt * Get senderIds * @return senderIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -444,7 +444,7 @@ public RegisterAndScheduleDataExportResponse _file(ListDataExportsByMessageChann * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -478,7 +478,7 @@ public RegisterAndScheduleDataExportResponse addUserIdsItem(String userIdsItem) * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RegisterAsOperatorToChannelsWithCustomChannelTypesData.java b/src/main/java/org/openapitools/client/model/RegisterAsOperatorToChannelsWithCustomChannelTypesData.java index 03e7af8c..661bbad8 100644 --- a/src/main/java/org/openapitools/client/model/RegisterAsOperatorToChannelsWithCustomChannelTypesData.java +++ b/src/main/java/org/openapitools/client/model/RegisterAsOperatorToChannelsWithCustomChannelTypesData.java @@ -37,7 +37,7 @@ RegisterAsOperatorToChannelsWithCustomChannelTypesData.JSON_PROPERTY_CHANNEL_CUSTOM_TYPES }) @JsonTypeName("registerAsOperatorToChannelsWithCustomChannelTypesData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RegisterAsOperatorToChannelsWithCustomChannelTypesData { public static final String JSON_PROPERTY_CHANNEL_CUSTOM_TYPES = "channel_custom_types"; private List channelCustomTypes = new ArrayList<>(); @@ -59,7 +59,7 @@ public RegisterAsOperatorToChannelsWithCustomChannelTypesData addChannelCustomTy * Specifies an array of one or more custom channel types, in order to register the user as an operator to channels with the channel types. * @return channelCustomTypes **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more custom channel types, in order to register the user as an operator to channels with the channel types.") @JsonProperty(JSON_PROPERTY_CHANNEL_CUSTOM_TYPES) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/RegisterGdprRequestData.java b/src/main/java/org/openapitools/client/model/RegisterGdprRequestData.java index 25b3992e..eaca19e8 100644 --- a/src/main/java/org/openapitools/client/model/RegisterGdprRequestData.java +++ b/src/main/java/org/openapitools/client/model/RegisterGdprRequestData.java @@ -40,7 +40,7 @@ RegisterGdprRequestData.JSON_PROPERTY_USER_ID }) @JsonTypeName("registerGdprRequestData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RegisterGdprRequestData { public static final String JSON_PROPERTY_ACTION = "action"; private String action; @@ -66,7 +66,7 @@ public RegisterGdprRequestData action(String action) { * Determines the type of a GDPR request. Acceptable values are limited to access and delete. If set to access, Sendbird server generates a downloadable zip file containing the data of the specified user with the user_id property to comply with GDPR's [right to access](https://gdpr-info.eu/art-15-gdpr/) of the data subject. If set to delete, the specified users with the user_ids property will be permanently deleted from your Sendbird application to comply with GDPR's [right to erasure](https://gdpr-info.eu/art-17-gdpr/) of the data subject. (Default: delete) * @return action **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines the type of a GDPR request. Acceptable values are limited to access and delete. If set to access, Sendbird server generates a downloadable zip file containing the data of the specified user with the user_id property to comply with GDPR's [right to access](https://gdpr-info.eu/art-15-gdpr/) of the data subject. If set to delete, the specified users with the user_ids property will be permanently deleted from your Sendbird application to comply with GDPR's [right to erasure](https://gdpr-info.eu/art-17-gdpr/) of the data subject. (Default: delete)") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -97,7 +97,7 @@ public RegisterGdprRequestData addUserIdsItem(String userIdsItem) { * Specifies an array of the IDs of the users to delete in order to meet the GDPR's requirements. The maximum number of users to be processed at once is 100. This should be specified when the value of the action property is delete. * @return userIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of the IDs of the users to delete in order to meet the GDPR's requirements. The maximum number of users to be processed at once is 100. This should be specified when the value of the action property is delete.") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -123,7 +123,7 @@ public RegisterGdprRequestData channelDeleteOption(String channelDeleteOption) { * Determines the scope of group channels to delete in addition to deleting the specified users with the user_ids property. Acceptable values are limited to the following:<br />- do_not_delete (default): the users will be deleted but their joined group channels will remain.<br />- 1_on_1: only 1-on-1 group channels of the users will be deleted. (This option can be useful when eliminating spam users) <br />- all: all joined group channels of the users will be deleted.<br /><br /> This only works when the value of the action property is delete. * @return channelDeleteOption **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines the scope of group channels to delete in addition to deleting the specified users with the user_ids property. Acceptable values are limited to the following:
- do_not_delete (default): the users will be deleted but their joined group channels will remain.
- 1_on_1: only 1-on-1 group channels of the users will be deleted. (This option can be useful when eliminating spam users)
- all: all joined group channels of the users will be deleted.

This only works when the value of the action property is delete.") @JsonProperty(JSON_PROPERTY_CHANNEL_DELETE_OPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -149,7 +149,7 @@ public RegisterGdprRequestData userId(String userId) { * Specifies the ID of the user to meet the GDPR's requirements. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the user to meet the GDPR's requirements.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/RegisterGdprRequestResponse.java b/src/main/java/org/openapitools/client/model/RegisterGdprRequestResponse.java index 6b6ddc5a..e44c3f5c 100644 --- a/src/main/java/org/openapitools/client/model/RegisterGdprRequestResponse.java +++ b/src/main/java/org/openapitools/client/model/RegisterGdprRequestResponse.java @@ -44,7 +44,7 @@ RegisterGdprRequestResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("registerGdprRequestResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RegisterGdprRequestResponse { public static final String JSON_PROPERTY_REQUEST_ID = "request_id"; private String requestId; @@ -79,7 +79,7 @@ public RegisterGdprRequestResponse requestId(String requestId) { * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,7 +105,7 @@ public RegisterGdprRequestResponse action(String action) { * Get action * @return action **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,7 +131,7 @@ public RegisterGdprRequestResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,7 +157,7 @@ public RegisterGdprRequestResponse userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,7 +191,7 @@ public RegisterGdprRequestResponse addUserIdsItem(String userIdsItem) { * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -217,7 +217,7 @@ public RegisterGdprRequestResponse channelDeleteOption(String channelDeleteOptio * Get channelDeleteOption * @return channelDeleteOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_DELETE_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -243,7 +243,7 @@ public RegisterGdprRequestResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RemovePushConfigurationByIdResponse.java b/src/main/java/org/openapitools/client/model/RemovePushConfigurationByIdResponse.java index 328e1de1..c67b05d0 100644 --- a/src/main/java/org/openapitools/client/model/RemovePushConfigurationByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/RemovePushConfigurationByIdResponse.java @@ -37,7 +37,7 @@ RemovePushConfigurationByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("removePushConfigurationByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RemovePushConfigurationByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -62,7 +62,7 @@ public RemovePushConfigurationByIdResponse addPushConfigurationsItem(String push * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RemoveReactionFromAMessageResponse.java b/src/main/java/org/openapitools/client/model/RemoveReactionFromAMessageResponse.java index e8a27ff8..2e1e2e56 100644 --- a/src/main/java/org/openapitools/client/model/RemoveReactionFromAMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/RemoveReactionFromAMessageResponse.java @@ -41,7 +41,7 @@ RemoveReactionFromAMessageResponse.JSON_PROPERTY_OPERATION }) @JsonTypeName("removeReactionFromAMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RemoveReactionFromAMessageResponse { public static final String JSON_PROPERTY_REACTION = "reaction"; private String reaction; @@ -73,7 +73,7 @@ public RemoveReactionFromAMessageResponse reaction(String reaction) { * Get reaction * @return reaction **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public RemoveReactionFromAMessageResponse userId(BigDecimal userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public RemoveReactionFromAMessageResponse success(Boolean success) { * Get success * @return success **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUCCESS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public RemoveReactionFromAMessageResponse msgId(BigDecimal msgId) { * Get msgId * @return msgId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MSG_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public RemoveReactionFromAMessageResponse updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public RemoveReactionFromAMessageResponse operation(String operation) { * Get operation * @return operation **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenByTokenResponse.java b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenByTokenResponse.java index c7765b4e..b421c558 100644 --- a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenByTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenByTokenResponse.java @@ -39,7 +39,7 @@ RemoveRegistrationOrDeviceTokenByTokenResponse.JSON_PROPERTY_USER }) @JsonTypeName("removeRegistrationOrDeviceTokenByTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RemoveRegistrationOrDeviceTokenByTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private List token = null; @@ -67,7 +67,7 @@ public RemoveRegistrationOrDeviceTokenByTokenResponse addTokenItem(String tokenI * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public RemoveRegistrationOrDeviceTokenByTokenResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse.java b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse.java index c520b501..4c0f681b 100644 --- a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse.java @@ -35,7 +35,7 @@ RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse.JSON_PROPERTY_USER_ID }) @JsonTypeName("removeRegistrationOrDeviceTokenFromOwnerByTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -52,7 +52,7 @@ public RemoveRegistrationOrDeviceTokenFromOwnerByTokenResponse userId(String use * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenResponse.java b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenResponse.java index 21c9ab9a..b04dd14d 100644 --- a/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/RemoveRegistrationOrDeviceTokenResponse.java @@ -39,7 +39,7 @@ RemoveRegistrationOrDeviceTokenResponse.JSON_PROPERTY_USER }) @JsonTypeName("removeRegistrationOrDeviceTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RemoveRegistrationOrDeviceTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private List token = null; @@ -67,7 +67,7 @@ public RemoveRegistrationOrDeviceTokenResponse addTokenItem(String tokenItem) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public RemoveRegistrationOrDeviceTokenResponse user(SendBirdUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportChannelByUrlData.java b/src/main/java/org/openapitools/client/model/ReportChannelByUrlData.java index cf6bf445..b899a2e1 100644 --- a/src/main/java/org/openapitools/client/model/ReportChannelByUrlData.java +++ b/src/main/java/org/openapitools/client/model/ReportChannelByUrlData.java @@ -39,7 +39,7 @@ ReportChannelByUrlData.JSON_PROPERTY_REPORT_DESCRIPTION }) @JsonTypeName("reportChannelByUrlData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportChannelByUrlData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -68,7 +68,7 @@ public ReportChannelByUrlData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public ReportChannelByUrlData channelUrl(String channelUrl) { * Specifies the URL of the channel to report for offensive messages or inappropriate activities. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel to report for offensive messages or inappropriate activities.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public ReportChannelByUrlData reportCategory(String reportCategory) { * Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam. * @return reportCategory **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam.") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public ReportChannelByUrlData reportingUserId(String reportingUserId) { * Specifies the unique ID of the user who reports the channel. * @return reportingUserId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who reports the channel.") @JsonProperty(JSON_PROPERTY_REPORTING_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -172,7 +172,7 @@ public ReportChannelByUrlData reportDescription(String reportDescription) { * Specifies additional information to be included in the report. * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional information to be included in the report.") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/ReportChannelByUrlResponse.java index 21f5f73e..b7a89e02 100644 --- a/src/main/java/org/openapitools/client/model/ReportChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/ReportChannelByUrlResponse.java @@ -50,7 +50,7 @@ ReportChannelByUrlResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("reportChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportChannelByUrlResponse { public static final String JSON_PROPERTY_REPORT_TYPE = "report_type"; private String reportType; @@ -88,7 +88,7 @@ public ReportChannelByUrlResponse reportType(String reportType) { * Get reportType * @return reportType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public ReportChannelByUrlResponse reportCategory(String reportCategory) { * Get reportCategory * @return reportCategory **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,7 +140,7 @@ public ReportChannelByUrlResponse reportingUser(SendBirdUser reportingUser) { * Get reportingUser * @return reportingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORTING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,7 +166,7 @@ public ReportChannelByUrlResponse offendingUser(SendBirdUser offendingUser) { * Get offendingUser * @return offendingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OFFENDING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -192,7 +192,7 @@ public ReportChannelByUrlResponse reportedMessage(SendBirdMessageResponse report * Get reportedMessage * @return reportedMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -226,7 +226,7 @@ public ReportChannelByUrlResponse channel(SendBirdChannelResponse channel) { * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,7 +252,7 @@ public ReportChannelByUrlResponse reportDescription(String reportDescription) { * Get reportDescription * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public ReportChannelByUrlResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportMessageByIdData.java b/src/main/java/org/openapitools/client/model/ReportMessageByIdData.java index 2dac4054..9a3bb404 100644 --- a/src/main/java/org/openapitools/client/model/ReportMessageByIdData.java +++ b/src/main/java/org/openapitools/client/model/ReportMessageByIdData.java @@ -41,7 +41,7 @@ ReportMessageByIdData.JSON_PROPERTY_REPORT_DESCRIPTION }) @JsonTypeName("reportMessageByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportMessageByIdData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -76,7 +76,7 @@ public ReportMessageByIdData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,7 +102,7 @@ public ReportMessageByIdData channelUrl(String channelUrl) { * Specifies the URL of the channel where the message to report is in. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel where the message to report is in.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public ReportMessageByIdData messageId(String messageId) { * Specifies the unique ID of the message to report. * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the message to report.") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public ReportMessageByIdData reportCategory(String reportCategory) { * Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam. * @return reportCategory **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam.") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -180,7 +180,7 @@ public ReportMessageByIdData offendingUserId(String offendingUserId) { * Specifies the unique ID of the user who has sent the message to report. * @return offendingUserId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user who has sent the message to report.") @JsonProperty(JSON_PROPERTY_OFFENDING_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -206,7 +206,7 @@ public ReportMessageByIdData reportingUserId(String reportingUserId) { * Specifies the unique ID of the user who reports the message. * @return reportingUserId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who reports the message.") @JsonProperty(JSON_PROPERTY_REPORTING_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,7 +232,7 @@ public ReportMessageByIdData reportDescription(String reportDescription) { * Specifies additional information to be included in the report. * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional information to be included in the report.") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportMessageByIdResponse.java b/src/main/java/org/openapitools/client/model/ReportMessageByIdResponse.java index eeb67285..c56c8cd9 100644 --- a/src/main/java/org/openapitools/client/model/ReportMessageByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ReportMessageByIdResponse.java @@ -50,7 +50,7 @@ ReportMessageByIdResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("reportMessageByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportMessageByIdResponse { public static final String JSON_PROPERTY_REPORT_TYPE = "report_type"; private String reportType; @@ -88,7 +88,7 @@ public ReportMessageByIdResponse reportType(String reportType) { * Get reportType * @return reportType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public ReportMessageByIdResponse reportCategory(String reportCategory) { * Get reportCategory * @return reportCategory **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,7 +140,7 @@ public ReportMessageByIdResponse reportingUser(SendBirdUser reportingUser) { * Get reportingUser * @return reportingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORTING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,7 +166,7 @@ public ReportMessageByIdResponse offendingUser(SendBirdUser offendingUser) { * Get offendingUser * @return offendingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OFFENDING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -192,7 +192,7 @@ public ReportMessageByIdResponse reportedMessage(SendBirdMessageResponse reporte * Get reportedMessage * @return reportedMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -226,7 +226,7 @@ public ReportMessageByIdResponse channel(SendBirdChannelResponse channel) { * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,7 +252,7 @@ public ReportMessageByIdResponse reportDescription(String reportDescription) { * Get reportDescription * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public ReportMessageByIdResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportUserByIdData.java b/src/main/java/org/openapitools/client/model/ReportUserByIdData.java index ab6a284f..ac452770 100644 --- a/src/main/java/org/openapitools/client/model/ReportUserByIdData.java +++ b/src/main/java/org/openapitools/client/model/ReportUserByIdData.java @@ -40,7 +40,7 @@ ReportUserByIdData.JSON_PROPERTY_REPORT_DESCRIPTION }) @JsonTypeName("reportUserByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportUserByIdData { public static final String JSON_PROPERTY_OFFENDING_USER_ID = "offending_user_id"; private String offendingUserId; @@ -72,7 +72,7 @@ public ReportUserByIdData offendingUserId(String offendingUserId) { * Specifies the unique ID of the user to report for using offensive or abusive language such as sending explicit messages or inappropriate comments. * @return offendingUserId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to report for using offensive or abusive language such as sending explicit messages or inappropriate comments.") @JsonProperty(JSON_PROPERTY_OFFENDING_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -98,7 +98,7 @@ public ReportUserByIdData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public ReportUserByIdData channelUrl(String channelUrl) { * Specifies the URL of the channel where the user to report is in. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel where the user to report is in.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,7 +150,7 @@ public ReportUserByIdData reportCategory(String reportCategory) { * Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam. * @return reportCategory **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the category which indicates the reason for reporting. Acceptable values are suspicious, harassing, inappropriate, and spam.") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -176,7 +176,7 @@ public ReportUserByIdData reportingUserId(String reportingUserId) { * Specifies the unique ID of the user who reports the offending user. * @return reportingUserId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who reports the offending user.") @JsonProperty(JSON_PROPERTY_REPORTING_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,7 +202,7 @@ public ReportUserByIdData reportDescription(String reportDescription) { * Specifies additional information to be included in the report. * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional information to be included in the report.") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ReportUserByIdResponse.java b/src/main/java/org/openapitools/client/model/ReportUserByIdResponse.java index d89e2593..498a411c 100644 --- a/src/main/java/org/openapitools/client/model/ReportUserByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ReportUserByIdResponse.java @@ -50,7 +50,7 @@ ReportUserByIdResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("reportUserByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportUserByIdResponse { public static final String JSON_PROPERTY_REPORT_TYPE = "report_type"; private String reportType; @@ -88,7 +88,7 @@ public ReportUserByIdResponse reportType(String reportType) { * Get reportType * @return reportType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public ReportUserByIdResponse reportCategory(String reportCategory) { * Get reportCategory * @return reportCategory **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,7 +140,7 @@ public ReportUserByIdResponse reportingUser(SendBirdUser reportingUser) { * Get reportingUser * @return reportingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORTING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,7 +166,7 @@ public ReportUserByIdResponse offendingUser(SendBirdUser offendingUser) { * Get offendingUser * @return offendingUser **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OFFENDING_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -192,7 +192,7 @@ public ReportUserByIdResponse reportedMessage(SendBirdMessageResponse reportedMe * Get reportedMessage * @return reportedMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -226,7 +226,7 @@ public ReportUserByIdResponse channel(SendBirdChannelResponse channel) { * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,7 +252,7 @@ public ReportUserByIdResponse reportDescription(String reportDescription) { * Get reportDescription * @return reportDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPORT_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public ReportUserByIdResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ResetPushPreferencesResponse.java b/src/main/java/org/openapitools/client/model/ResetPushPreferencesResponse.java index 740f1c05..61421d3b 100644 --- a/src/main/java/org/openapitools/client/model/ResetPushPreferencesResponse.java +++ b/src/main/java/org/openapitools/client/model/ResetPushPreferencesResponse.java @@ -51,7 +51,7 @@ ResetPushPreferencesResponse.JSON_PROPERTY_PUSH_TRIGGER_OPTION }) @JsonTypeName("resetPushPreferencesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ResetPushPreferencesResponse { public static final String JSON_PROPERTY_SNOOZE_START_TS = "snooze_start_ts"; private String snoozeStartTs; @@ -107,7 +107,7 @@ public ResetPushPreferencesResponse snoozeStartTs(String snoozeStartTs) { * Get snoozeStartTs * @return snoozeStartTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,7 +133,7 @@ public ResetPushPreferencesResponse startHour(BigDecimal startHour) { * Get startHour * @return startHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,7 +159,7 @@ public ResetPushPreferencesResponse snoozeEnabled(Boolean snoozeEnabled) { * Get snoozeEnabled * @return snoozeEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,7 +185,7 @@ public ResetPushPreferencesResponse endMin(BigDecimal endMin) { * Get endMin * @return endMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -211,7 +211,7 @@ public ResetPushPreferencesResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -237,7 +237,7 @@ public ResetPushPreferencesResponse blockPushFromBots(Boolean blockPushFromBots) * Get blockPushFromBots * @return blockPushFromBots **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BLOCK_PUSH_FROM_BOTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,7 +271,7 @@ public ResetPushPreferencesResponse addPushBlockedBotIdsItem(BigDecimal pushBloc * Get pushBlockedBotIds * @return pushBlockedBotIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_BLOCKED_BOT_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,7 +297,7 @@ public ResetPushPreferencesResponse startMin(BigDecimal startMin) { * Get startMin * @return startMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -323,7 +323,7 @@ public ResetPushPreferencesResponse snoozeEndTs(String snoozeEndTs) { * Get snoozeEndTs * @return snoozeEndTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -349,7 +349,7 @@ public ResetPushPreferencesResponse doNotDisturb(Boolean doNotDisturb) { * Get doNotDisturb * @return doNotDisturb **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -375,7 +375,7 @@ public ResetPushPreferencesResponse endHour(BigDecimal endHour) { * Get endHour * @return endHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,7 +401,7 @@ public ResetPushPreferencesResponse enablePushForReplies(Boolean enablePushForRe * Get enablePushForReplies * @return enablePushForReplies **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH_FOR_REPLIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -427,7 +427,7 @@ public ResetPushPreferencesResponse pushSound(String pushSound) { * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,7 +453,7 @@ public ResetPushPreferencesResponse pushTriggerOption(String pushTriggerOption) * Get pushTriggerOption * @return pushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RetrieveAdvancedAnalyticsMetricsResponse.java b/src/main/java/org/openapitools/client/model/RetrieveAdvancedAnalyticsMetricsResponse.java index 0bdd5c60..9fc14a1e 100644 --- a/src/main/java/org/openapitools/client/model/RetrieveAdvancedAnalyticsMetricsResponse.java +++ b/src/main/java/org/openapitools/client/model/RetrieveAdvancedAnalyticsMetricsResponse.java @@ -41,7 +41,7 @@ RetrieveAdvancedAnalyticsMetricsResponse.JSON_PROPERTY_CUSTOM_MESSAGE_TYPE }) @JsonTypeName("retrieveAdvancedAnalyticsMetricsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RetrieveAdvancedAnalyticsMetricsResponse { public static final String JSON_PROPERTY_SEGMENTS = "segments"; private String segments; @@ -73,7 +73,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse segments(String segments) { * Get segments * @return segments **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SEGMENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse date(String date) { * Get date * @return date **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse value(BigDecimal value) { * Get value * @return value **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse channelType(String channelType) * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse customChannelType(String customC * Get customChannelType * @return customChannelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public RetrieveAdvancedAnalyticsMetricsResponse customMessageType(String customM * Get customMessageType * @return customMessageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RetrieveIpWhitelistResponse.java b/src/main/java/org/openapitools/client/model/RetrieveIpWhitelistResponse.java index 580a886b..de131c48 100644 --- a/src/main/java/org/openapitools/client/model/RetrieveIpWhitelistResponse.java +++ b/src/main/java/org/openapitools/client/model/RetrieveIpWhitelistResponse.java @@ -37,7 +37,7 @@ RetrieveIpWhitelistResponse.JSON_PROPERTY_IP_WHITELIST_ADDRESSES }) @JsonTypeName("retrieveIpWhitelistResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RetrieveIpWhitelistResponse { public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses"; private List ipWhitelistAddresses = null; @@ -62,7 +62,7 @@ public RetrieveIpWhitelistResponse addIpWhitelistAddressesItem(String ipWhitelis * Get ipWhitelistAddresses * @return ipWhitelistAddresses **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IP_WHITELIST_ADDRESSES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponse.java b/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponse.java index c544433c..f2fc5960 100644 --- a/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponse.java +++ b/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponse.java @@ -36,7 +36,7 @@ RetrieveListOfSubscribedEventsResponse.JSON_PROPERTY_WEBHOOK }) @JsonTypeName("retrieveListOfSubscribedEventsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RetrieveListOfSubscribedEventsResponse { public static final String JSON_PROPERTY_WEBHOOK = "webhook"; private RetrieveListOfSubscribedEventsResponseWebhook webhook; @@ -53,7 +53,7 @@ public RetrieveListOfSubscribedEventsResponse webhook(RetrieveListOfSubscribedEv * Get webhook * @return webhook **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WEBHOOK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponseWebhook.java b/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponseWebhook.java index 231c0a7b..56656918 100644 --- a/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponseWebhook.java +++ b/src/main/java/org/openapitools/client/model/RetrieveListOfSubscribedEventsResponseWebhook.java @@ -42,7 +42,7 @@ RetrieveListOfSubscribedEventsResponseWebhook.JSON_PROPERTY_INCLUDE_UNREAD_COUNT }) @JsonTypeName("retrieveListOfSubscribedEventsResponse_webhook") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RetrieveListOfSubscribedEventsResponseWebhook { public static final String JSON_PROPERTY_ENABLED = "enabled"; private Boolean enabled; @@ -74,7 +74,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook enabled(Boolean enabled) { * Get enabled * @return enabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,7 +100,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook includeMembers(Boolean incl * Get includeMembers * @return includeMembers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_MEMBERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,7 +160,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook addEnabledEventsItem(String * Get enabledEvents * @return enabledEvents **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLED_EVENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,7 +194,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook addAllWebhookCategoriesItem * Get allWebhookCategories * @return allWebhookCategories **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ALL_WEBHOOK_CATEGORIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -220,7 +220,7 @@ public RetrieveListOfSubscribedEventsResponseWebhook includeUnreadCount(Boolean * Get includeUnreadCount * @return includeUnreadCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_UNREAD_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/RevokeSecondaryApiTokenByTokenResponse.java b/src/main/java/org/openapitools/client/model/RevokeSecondaryApiTokenByTokenResponse.java index d2e8a670..8118c120 100644 --- a/src/main/java/org/openapitools/client/model/RevokeSecondaryApiTokenByTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/RevokeSecondaryApiTokenByTokenResponse.java @@ -37,7 +37,7 @@ RevokeSecondaryApiTokenByTokenResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("revokeSecondaryApiTokenByTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class RevokeSecondaryApiTokenByTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -57,7 +57,7 @@ public RevokeSecondaryApiTokenByTokenResponse token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public RevokeSecondaryApiTokenByTokenResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SBObject.java b/src/main/java/org/openapitools/client/model/SBObject.java index 209cfb00..f475954e 100644 --- a/src/main/java/org/openapitools/client/model/SBObject.java +++ b/src/main/java/org/openapitools/client/model/SBObject.java @@ -35,7 +35,7 @@ @JsonPropertyOrder({ SBObject.JSON_PROPERTY_CONSTRUCTOR }) -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SBObject { public static final String JSON_PROPERTY_CONSTRUCTOR = "constructor"; private Function constructor; @@ -52,7 +52,7 @@ public SBObject constructor(Function constructor) { * Get constructor * @return constructor **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONSTRUCTOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementData.java b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementData.java index 684af9e2..f4d4c674 100644 --- a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementData.java +++ b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementData.java @@ -61,7 +61,7 @@ ScheduleAnnouncementData.JSON_PROPERTY_ASSIGN_SENDER_AS_CHANNEL_INVITER }) @JsonTypeName("scheduleAnnouncementData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduleAnnouncementData { public static final String JSON_PROPERTY_MESSAGE = "message"; private ScheduleAnnouncementDataMessage message; @@ -147,7 +147,7 @@ public ScheduleAnnouncementData message(ScheduleAnnouncementDataMessage message) * Get message * @return message **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -173,7 +173,7 @@ public ScheduleAnnouncementData messageType(String messageType) { * Specifies the type of the message, which can be either MESG for a text message and ADMM for an admin message. * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the message, which can be either MESG for a text message and ADMM for an admin message.") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,7 +199,7 @@ public ScheduleAnnouncementData userId(String userId) { * Specifies the unique ID of the sender when the message.type is MESG. When the message.type value is ADMM, this property is not effective. * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the sender when the message.type is MESG. When the message.type value is ADMM, this property is not effective.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -225,7 +225,7 @@ public ScheduleAnnouncementData content(String content) { * Specifies the content of the message. * @return content **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the content of the message.") @JsonProperty(JSON_PROPERTY_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -251,7 +251,7 @@ public ScheduleAnnouncementData targetAt(String targetAt) { * Specifies the target channels to send the announcement to. Acceptable values are the following: <br/> - sender_all_channels (Default): sends the announcement to all of the sender's group channels.<br />- target_channels: sends the announcement to all target group channels. When the `message.type` of the announcement is ADMM, this is the only valid option. <br /> - target_users_included_channels: sends the announcement to group channels consisting of the sender, target users, and other members. <br/> - target_users_only_channels: sends the announcement to group channels consisting of the sender and target users only. * @return targetAt **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the target channels to send the announcement to. Acceptable values are the following:
- sender_all_channels (Default): sends the announcement to all of the sender's group channels.
- target_channels: sends the announcement to all target group channels. When the `message.type` of the announcement is ADMM, this is the only valid option.
- target_users_included_channels: sends the announcement to group channels consisting of the sender, target users, and other members.
- target_users_only_channels: sends the announcement to group channels consisting of the sender and target users only.") @JsonProperty(JSON_PROPERTY_TARGET_AT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -282,7 +282,7 @@ public ScheduleAnnouncementData addTargetListItem(String targetListItem) { * Specifies an array of one or more target user IDs or target channel URLs to send the announcement to when the target_at is target_channels, target_users_only_channels, or target_users_included_channels.<br /><br /> When the target_at value is sender_all_channels, this property is not effective. * @return targetList **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more target user IDs or target channel URLs to send the announcement to when the target_at is target_channels, target_users_only_channels, or target_users_included_channels.

When the target_at value is sender_all_channels, this property is not effective.") @JsonProperty(JSON_PROPERTY_TARGET_LIST) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -308,7 +308,7 @@ public ScheduleAnnouncementData targetChannelType(String targetChannelType) { * Determines which type of group channel to send the announcement to, based on the target_at and target_list. This property is effective only when the target_at is either target_users_only_channels or target_users_included_channels and the target_list is specified. Acceptable values are limited to the following:<br/>- all: send the announcement to all channels that have all target users and the sender in them, regardless of channel type.<br/>- distinct (default): sends this announcement to the distinct channels. Distinct channels continue to use the same existing channels whenever someone attempts to create a new channel with the same members.<br/>- non-distinct: sends this announcement to the non-distinct channels. Non-distinct channels always create a new channel even if there is an existing channel with the same members.<br/><br/> The distinct and non-distinct channels are a subtype of group channels, determined by the [is_distinct](/docs/chat/v3/platform-api/guides/group-channel#2-types-of-a-channel-3-resource-representation) property. * @return targetChannelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines which type of group channel to send the announcement to, based on the target_at and target_list. This property is effective only when the target_at is either target_users_only_channels or target_users_included_channels and the target_list is specified. Acceptable values are limited to the following:
- all: send the announcement to all channels that have all target users and the sender in them, regardless of channel type.
- distinct (default): sends this announcement to the distinct channels. Distinct channels continue to use the same existing channels whenever someone attempts to create a new channel with the same members.
- non-distinct: sends this announcement to the non-distinct channels. Non-distinct channels always create a new channel even if there is an existing channel with the same members.

The distinct and non-distinct channels are a subtype of group channels, determined by the [is_distinct](/docs/chat/v3/platform-api/guides/group-channel#2-types-of-a-channel-3-resource-representation) property.") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -334,7 +334,7 @@ public ScheduleAnnouncementData uniqueId(String uniqueId) { * Specifies the unique ID of the new announcement. The unique_id will be automatically created unless specified. * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the new announcement. The unique_id will be automatically created unless specified.") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -360,7 +360,7 @@ public ScheduleAnnouncementData messageCustomType(String messageCustomType) { * Specifies the custom message type of the message of the new announcement. * @return messageCustomType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the custom message type of the message of the new announcement.") @JsonProperty(JSON_PROPERTY_MESSAGE_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -386,7 +386,7 @@ public ScheduleAnnouncementData messageData(String messageData) { * Specifies additional message information such as custom font size, font type or `JSON` formatted string. * @return messageData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_MESSAGE_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -412,7 +412,7 @@ public ScheduleAnnouncementData createChannel(Boolean createChannel) { * Determines whether to create a new channel if there is no existing channel that matches with the target options including target_at and target_list. By specifying the create_channel_options, you can configure the properties of newly created channels. (Default: false) * @return createChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to create a new channel if there is no existing channel that matches with the target options including target_at and target_list. By specifying the create_channel_options, you can configure the properties of newly created channels. (Default: false)") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -438,7 +438,7 @@ public ScheduleAnnouncementData announcementGroup(String announcementGroup) { * Specifies the announcement group that the new announcement belongs to.<br/> <br/> This property is effective only when the target_at is either target_users_only_channels or target_users_included_channels. * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the announcement group that the new announcement belongs to.

This property is effective only when the target_at is either target_users_only_channels or target_users_included_channels.") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -464,7 +464,7 @@ public ScheduleAnnouncementData createChannelOptions(String createChannelOptions * A newly created channel configuration. * @return createChannelOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "A newly created channel configuration.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -490,7 +490,7 @@ public ScheduleAnnouncementData createChannelOptionsName(String createChannelOpt * Specifies the name of channels to be created. (Default: Group Channel) * @return createChannelOptionsName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of channels to be created. (Default: Group Channel)") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -516,7 +516,7 @@ public ScheduleAnnouncementData createChannelOptionsCoverUrl(String createChanne * Specifies the URL of the cover image for the new channels. * @return createChannelOptionsCoverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the cover image for the new channels.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -542,7 +542,7 @@ public ScheduleAnnouncementData createChannelOptionsCustomType(String createChan * Specifies the custom channel type of the new channels. * @return createChannelOptionsCustomType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the custom channel type of the new channels.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -568,7 +568,7 @@ public ScheduleAnnouncementData createChannelOptionsData(String createChannelOpt * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return createChannelOptionsData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -594,7 +594,7 @@ public ScheduleAnnouncementData createChannelOptionsDistinct(String createChanne * Determines whether to create a [distinct](/docs/chat/v3/platform-api/guides/channel-types#2-group-channel) channel. (Default: true) * @return createChannelOptionsDistinct **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to create a [distinct](/docs/chat/v3/platform-api/guides/channel-types#2-group-channel) channel. (Default: true)") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_DISTINCT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -620,7 +620,7 @@ public ScheduleAnnouncementData scheduledAt(Integer scheduledAt) { * Specifies the time to start the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. If not specified, the default is the timestamp of when the request was delivered to Sendbird server. (Default: current timestamp) * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to start the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. If not specified, the default is the timestamp of when the request was delivered to Sendbird server. (Default: current timestamp)") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -646,7 +646,7 @@ public ScheduleAnnouncementData ceaseAt(String ceaseAt) { * Specifies the time to temporarily put the announcement on hold in UTC. The string is represented in HHMM format. This should be specified in conjunction with the resume_at property.<br/><br/> If both the cease_at and resume_at are not specified, Sendbird server starts to send the announcement at the time of the scheduled_at above. * @return ceaseAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to temporarily put the announcement on hold in UTC. The string is represented in HHMM format. This should be specified in conjunction with the resume_at property.

If both the cease_at and resume_at are not specified, Sendbird server starts to send the announcement at the time of the scheduled_at above.") @JsonProperty(JSON_PROPERTY_CEASE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -672,7 +672,7 @@ public ScheduleAnnouncementData resumeAt(String resumeAt) { * Specifies the time to automatically resume the on-hold announcement in UTC. The string is represented in HHMM format. This should be specified in conjunction with the cease_at property above.<br/><br/> If both the cease_at and resume_at are not specified, Sendbird server starts to send the announcement at the time of the scheduled_at above. * @return resumeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to automatically resume the on-hold announcement in UTC. The string is represented in HHMM format. This should be specified in conjunction with the cease_at property above.

If both the cease_at and resume_at are not specified, Sendbird server starts to send the announcement at the time of the scheduled_at above.") @JsonProperty(JSON_PROPERTY_RESUME_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -698,7 +698,7 @@ public ScheduleAnnouncementData endAt(Integer endAt) { * Specifies the time to permanently end the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous##2-timestamps) format. If this property is specified, the announcement ends even when the announcement is not sent to all its targets. <br/><br/> For the announcement to run safely, the end_at time should be set at least 10 minutes later than the scheduled_at time. * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to permanently end the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous##2-timestamps) format. If this property is specified, the announcement ends even when the announcement is not sent to all its targets.

For the announcement to run safely, the end_at time should be set at least 10 minutes later than the scheduled_at time.") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -724,7 +724,7 @@ public ScheduleAnnouncementData enablePush(Boolean enablePush) { * Determines whether to turn on push notification for the announcement. If set to true, push notifications will be sent for the announcement. (Default: true) * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to turn on push notification for the announcement. If set to true, push notifications will be sent for the announcement. (Default: true)") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -750,7 +750,7 @@ public ScheduleAnnouncementData assignSenderAsChannelInviter(Boolean assignSende * Determines whether to assign an announcement sender as an inviter of the newly created channels. (Default: false) * @return assignSenderAsChannelInviter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to assign an announcement sender as an inviter of the newly created channels. (Default: false)") @JsonProperty(JSON_PROPERTY_ASSIGN_SENDER_AS_CHANNEL_INVITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementDataMessage.java b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementDataMessage.java index dc63f7e9..e09b2a80 100644 --- a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementDataMessage.java +++ b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementDataMessage.java @@ -38,7 +38,7 @@ ScheduleAnnouncementDataMessage.JSON_PROPERTY_CONTENT }) @JsonTypeName("scheduleAnnouncementData_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduleAnnouncementDataMessage { public static final String JSON_PROPERTY_TYPE = "type"; private String type; @@ -61,7 +61,7 @@ public ScheduleAnnouncementDataMessage type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public ScheduleAnnouncementDataMessage userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public ScheduleAnnouncementDataMessage content(String content) { * Get content * @return content **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponse.java b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponse.java index 845b6abc..1d8a18bf 100644 --- a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponse.java +++ b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponse.java @@ -55,7 +55,7 @@ ScheduleAnnouncementResponse.JSON_PROPERTY_OPEN_RATE }) @JsonTypeName("scheduleAnnouncementResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduleAnnouncementResponse { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -123,7 +123,7 @@ public ScheduleAnnouncementResponse uniqueId(String uniqueId) { * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -149,7 +149,7 @@ public ScheduleAnnouncementResponse announcementGroup(String announcementGroup) * Get announcementGroup * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -175,7 +175,7 @@ public ScheduleAnnouncementResponse message(ScheduleAnnouncementResponseMessage * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,7 +201,7 @@ public ScheduleAnnouncementResponse enablePush(Boolean enablePush) { * Get enablePush * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -227,7 +227,7 @@ public ScheduleAnnouncementResponse targetAt(String targetAt) { * Get targetAt * @return targetAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -253,7 +253,7 @@ public ScheduleAnnouncementResponse targetUserCount(BigDecimal targetUserCount) * Get targetUserCount * @return targetUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -279,7 +279,7 @@ public ScheduleAnnouncementResponse targetChannelCount(BigDecimal targetChannelC * Get targetChannelCount * @return targetChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,7 +305,7 @@ public ScheduleAnnouncementResponse targetChannelType(String targetChannelType) * Get targetChannelType * @return targetChannelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -331,7 +331,7 @@ public ScheduleAnnouncementResponse createChannelOptions(ScheduleAnnouncementRes * Get createChannelOptions * @return createChannelOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -357,7 +357,7 @@ public ScheduleAnnouncementResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -383,7 +383,7 @@ public ScheduleAnnouncementResponse scheduledAt(BigDecimal scheduledAt) { * Get scheduledAt * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -409,7 +409,7 @@ public ScheduleAnnouncementResponse ceaseAt(String ceaseAt) { * Get ceaseAt * @return ceaseAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CEASE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -435,7 +435,7 @@ public ScheduleAnnouncementResponse resumeAt(String resumeAt) { * Get resumeAt * @return resumeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RESUME_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -461,7 +461,7 @@ public ScheduleAnnouncementResponse completedAt(BigDecimal completedAt) { * Get completedAt * @return completedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -487,7 +487,7 @@ public ScheduleAnnouncementResponse sentUserCount(BigDecimal sentUserCount) { * Get sentUserCount * @return sentUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -513,7 +513,7 @@ public ScheduleAnnouncementResponse sentChannelCount(BigDecimal sentChannelCount * Get sentChannelCount * @return sentChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -539,7 +539,7 @@ public ScheduleAnnouncementResponse openCount(BigDecimal openCount) { * Get openCount * @return openCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -565,7 +565,7 @@ public ScheduleAnnouncementResponse openRate(BigDecimal openRate) { * Get openRate * @return openRate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseCreateChannelOptions.java b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseCreateChannelOptions.java index c02ca670..3a6b9e3b 100644 --- a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseCreateChannelOptions.java +++ b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseCreateChannelOptions.java @@ -39,7 +39,7 @@ ScheduleAnnouncementResponseCreateChannelOptions.JSON_PROPERTY_CUSTOM_TYPE }) @JsonTypeName("scheduleAnnouncementResponse_create_channel_options") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduleAnnouncementResponseCreateChannelOptions { public static final String JSON_PROPERTY_DISTINCT = "distinct"; private Boolean distinct; @@ -68,7 +68,7 @@ public ScheduleAnnouncementResponseCreateChannelOptions distinct(Boolean distinc * Get distinct * @return distinct **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DISTINCT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public ScheduleAnnouncementResponseCreateChannelOptions data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public ScheduleAnnouncementResponseCreateChannelOptions name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,7 +146,7 @@ public ScheduleAnnouncementResponseCreateChannelOptions coverUrl(String coverUrl * Get coverUrl * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -172,7 +172,7 @@ public ScheduleAnnouncementResponseCreateChannelOptions customType(String custom * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseMessage.java b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseMessage.java index 09de6ae4..6cc3f845 100644 --- a/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseMessage.java +++ b/src/main/java/org/openapitools/client/model/ScheduleAnnouncementResponseMessage.java @@ -39,7 +39,7 @@ ScheduleAnnouncementResponseMessage.JSON_PROPERTY_DATA }) @JsonTypeName("scheduleAnnouncementResponse_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduleAnnouncementResponseMessage { public static final String JSON_PROPERTY_TYPE = "type"; private String type; @@ -68,7 +68,7 @@ public ScheduleAnnouncementResponseMessage type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public ScheduleAnnouncementResponseMessage customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public ScheduleAnnouncementResponseMessage userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,7 +146,7 @@ public ScheduleAnnouncementResponseMessage content(String content) { * Get content * @return content **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -172,7 +172,7 @@ public ScheduleAnnouncementResponseMessage data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdAdminMessage.java b/src/main/java/org/openapitools/client/model/SendBirdAdminMessage.java index 2a395266..ca5f903d 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdAdminMessage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdAdminMessage.java @@ -73,7 +73,7 @@ SendBirdAdminMessage.JSON_PROPERTY_UPDATED_AT }) @JsonTypeName("SendBird.AdminMessage") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdAdminMessage { public static final String JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS = "apple_critical_alert_options"; private SendBirdAppleCriticalAlertOptions appleCriticalAlertOptions; @@ -237,7 +237,7 @@ public SendBirdAdminMessage appleCriticalAlertOptions(SendBirdAppleCriticalAlert * Get appleCriticalAlertOptions * @return appleCriticalAlertOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -263,7 +263,7 @@ public SendBirdAdminMessage channelType(String channelType) { * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -289,7 +289,7 @@ public SendBirdAdminMessage channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -315,7 +315,7 @@ public SendBirdAdminMessage createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -341,7 +341,7 @@ public SendBirdAdminMessage customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -367,7 +367,7 @@ public SendBirdAdminMessage data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -393,7 +393,7 @@ public SendBirdAdminMessage isReplyToChannel(Boolean isReplyToChannel) { * Get isReplyToChannel * @return isReplyToChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REPLY_TO_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -419,7 +419,7 @@ public SendBirdAdminMessage mentionType(String mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,7 +453,7 @@ public SendBirdAdminMessage addMentionedUsersItem(SendBirdUser mentionedUsersIte * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -479,7 +479,7 @@ public SendBirdAdminMessage message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -505,7 +505,7 @@ public SendBirdAdminMessage messageId(BigDecimal messageId) { * Get messageId * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -531,7 +531,7 @@ public SendBirdAdminMessage messageType(MessageTypeEnum messageType) { * Get messageType * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -557,7 +557,7 @@ public SendBirdAdminMessage metaArray(SBObject metaArray) { * Get metaArray * @return metaArray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -591,7 +591,7 @@ public SendBirdAdminMessage addMetaArraysItem(SendBirdMessageMetaArray metaArray * Get metaArrays * @return metaArrays **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -617,7 +617,7 @@ public SendBirdAdminMessage ogMetaData(SendBirdOGMetaData ogMetaData) { * Get ogMetaData * @return ogMetaData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_META_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -643,7 +643,7 @@ public SendBirdAdminMessage parentMessage(SendBirdMessageResponse parentMessage) * Get parentMessage * @return parentMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -677,7 +677,7 @@ public SendBirdAdminMessage parentMessageId(BigDecimal parentMessageId) { * Get parentMessageId * @return parentMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -703,7 +703,7 @@ public SendBirdAdminMessage parentMessageText(String parentMessageText) { * Get parentMessageText * @return parentMessageText **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -737,7 +737,7 @@ public SendBirdAdminMessage addReactionsItem(SendBirdReaction reactionsItem) { * Get reactions * @return reactions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REACTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -763,7 +763,7 @@ public SendBirdAdminMessage sendingStatus(SendingStatusEnum sendingStatus) { * Get sendingStatus * @return sendingStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDING_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -789,7 +789,7 @@ public SendBirdAdminMessage silent(Boolean silent) { * Get silent * @return silent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -815,7 +815,7 @@ public SendBirdAdminMessage threadInfo(SendBirdThreadInfo threadInfo) { * Get threadInfo * @return threadInfo **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THREAD_INFO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -841,7 +841,7 @@ public SendBirdAdminMessage translations(SBObject translations) { * Get translations * @return translations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TRANSLATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -867,7 +867,7 @@ public SendBirdAdminMessage updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdAppleCriticalAlertOptions.java b/src/main/java/org/openapitools/client/model/SendBirdAppleCriticalAlertOptions.java index f4938bec..79274ee0 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdAppleCriticalAlertOptions.java +++ b/src/main/java/org/openapitools/client/model/SendBirdAppleCriticalAlertOptions.java @@ -37,7 +37,7 @@ SendBirdAppleCriticalAlertOptions.JSON_PROPERTY_VOLUME }) @JsonTypeName("SendBird.AppleCriticalAlertOptions") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdAppleCriticalAlertOptions { public static final String JSON_PROPERTY_NAME = "name"; private String name; @@ -57,7 +57,7 @@ public SendBirdAppleCriticalAlertOptions name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public SendBirdAppleCriticalAlertOptions volume(BigDecimal volume) { * Get volume * @return volume **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOLUME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdAutoEventMessageSettings.java b/src/main/java/org/openapitools/client/model/SendBirdAutoEventMessageSettings.java index 72437704..48774e58 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdAutoEventMessageSettings.java +++ b/src/main/java/org/openapitools/client/model/SendBirdAutoEventMessageSettings.java @@ -36,7 +36,7 @@ SendBirdAutoEventMessageSettings.JSON_PROPERTY_AUTO_EVENT_MESSAGE }) @JsonTypeName("SendBird.AutoEventMessageSettings") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdAutoEventMessageSettings { public static final String JSON_PROPERTY_AUTO_EVENT_MESSAGE = "auto_event_message"; private ConfigureAutoEventDataAutoEventMessage autoEventMessage; @@ -53,7 +53,7 @@ public SendBirdAutoEventMessageSettings autoEventMessage(ConfigureAutoEventDataA * Get autoEventMessage * @return autoEventMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_EVENT_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBaseChannel.java b/src/main/java/org/openapitools/client/model/SendBirdBaseChannel.java index 8b30f2bf..6fc19e94 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBaseChannel.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBaseChannel.java @@ -45,7 +45,7 @@ SendBirdBaseChannel.JSON_PROPERTY_URL }) @JsonTypeName("SendBird.BaseChannel") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBaseChannel { public static final String JSON_PROPERTY_COVER_URL = "cover_url"; private String coverUrl; @@ -86,7 +86,7 @@ public SendBirdBaseChannel coverUrl(String coverUrl) { * Get coverUrl * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public SendBirdBaseChannel createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,7 +138,7 @@ public SendBirdBaseChannel creator(SendBirdUser creator) { * Get creator * @return creator **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -164,7 +164,7 @@ public SendBirdBaseChannel customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,7 +190,7 @@ public SendBirdBaseChannel data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -216,7 +216,7 @@ public SendBirdBaseChannel isEphemeral(Boolean isEphemeral) { * Get isEphemeral * @return isEphemeral **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_EPHEMERAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -242,7 +242,7 @@ public SendBirdBaseChannel isFrozen(Boolean isFrozen) { * Get isFrozen * @return isFrozen **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_FROZEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,7 +268,7 @@ public SendBirdBaseChannel name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -294,7 +294,7 @@ public SendBirdBaseChannel url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBaseMessageInstance.java b/src/main/java/org/openapitools/client/model/SendBirdBaseMessageInstance.java index feb1a0fc..b89f6238 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBaseMessageInstance.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBaseMessageInstance.java @@ -72,7 +72,7 @@ SendBirdBaseMessageInstance.JSON_PROPERTY_UPDATED_AT }) @JsonTypeName("SendBird.BaseMessageInstance") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBaseMessageInstance { public static final String JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS = "apple_critical_alert_options"; private SendBirdAppleCriticalAlertOptions appleCriticalAlertOptions; @@ -232,7 +232,7 @@ public SendBirdBaseMessageInstance appleCriticalAlertOptions(SendBirdAppleCritic * Get appleCriticalAlertOptions * @return appleCriticalAlertOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -258,7 +258,7 @@ public SendBirdBaseMessageInstance channelType(String channelType) { * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -284,7 +284,7 @@ public SendBirdBaseMessageInstance channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -310,7 +310,7 @@ public SendBirdBaseMessageInstance createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -336,7 +336,7 @@ public SendBirdBaseMessageInstance customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -362,7 +362,7 @@ public SendBirdBaseMessageInstance data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -388,7 +388,7 @@ public SendBirdBaseMessageInstance isReplyToChannel(Boolean isReplyToChannel) { * Get isReplyToChannel * @return isReplyToChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REPLY_TO_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -414,7 +414,7 @@ public SendBirdBaseMessageInstance mentionType(String mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -448,7 +448,7 @@ public SendBirdBaseMessageInstance addMentionedUsersItem(SendBirdUser mentionedU * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -474,7 +474,7 @@ public SendBirdBaseMessageInstance messageId(BigDecimal messageId) { * Get messageId * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -500,7 +500,7 @@ public SendBirdBaseMessageInstance messageType(MessageTypeEnum messageType) { * Get messageType * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -526,7 +526,7 @@ public SendBirdBaseMessageInstance metaArray(SBObject metaArray) { * Get metaArray * @return metaArray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -560,7 +560,7 @@ public SendBirdBaseMessageInstance addMetaArraysItem(SendBirdMessageMetaArray me * Get metaArrays * @return metaArrays **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -586,7 +586,7 @@ public SendBirdBaseMessageInstance ogMetaData(SendBirdOGMetaData ogMetaData) { * Get ogMetaData * @return ogMetaData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OG_META_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -612,7 +612,7 @@ public SendBirdBaseMessageInstance parentMessage(SendBirdMessageResponse parentM * Get parentMessage * @return parentMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -646,7 +646,7 @@ public SendBirdBaseMessageInstance parentMessageId(BigDecimal parentMessageId) { * Get parentMessageId * @return parentMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -672,7 +672,7 @@ public SendBirdBaseMessageInstance parentMessageText(String parentMessageText) { * Get parentMessageText * @return parentMessageText **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -706,7 +706,7 @@ public SendBirdBaseMessageInstance addReactionsItem(SendBirdReaction reactionsIt * Get reactions * @return reactions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REACTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -732,7 +732,7 @@ public SendBirdBaseMessageInstance sendingStatus(SendingStatusEnum sendingStatus * Get sendingStatus * @return sendingStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDING_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -758,7 +758,7 @@ public SendBirdBaseMessageInstance silent(Boolean silent) { * Get silent * @return silent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -784,7 +784,7 @@ public SendBirdBaseMessageInstance threadInfo(SendBirdThreadInfo threadInfo) { * Get threadInfo * @return threadInfo **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THREAD_INFO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -810,7 +810,7 @@ public SendBirdBaseMessageInstance updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponse.java b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponse.java index 2450f066..afebad87 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponse.java @@ -36,7 +36,7 @@ SendBirdBotsMessageResponse.JSON_PROPERTY_MESSAGE }) @JsonTypeName("SendBird.BotsMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBotsMessageResponse { public static final String JSON_PROPERTY_MESSAGE = "message"; private SendBirdBotsMessageResponseMessage message; @@ -53,7 +53,7 @@ public SendBirdBotsMessageResponse message(SendBirdBotsMessageResponseMessage me * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessage.java b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessage.java index 1e124dc1..25cf6ace 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessage.java @@ -62,7 +62,7 @@ SendBirdBotsMessageResponseMessage.JSON_PROPERTY_EXTENDED_MESSAGE_PAYLOAD }) @JsonTypeName("SendBird_BotsMessageResponse_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBotsMessageResponseMessage { public static final String JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS = "message_survival_seconds"; private BigDecimal messageSurvivalSeconds; @@ -139,7 +139,7 @@ public SendBirdBotsMessageResponseMessage messageSurvivalSeconds(BigDecimal mess * Get messageSurvivalSeconds * @return messageSurvivalSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,7 +165,7 @@ public SendBirdBotsMessageResponseMessage customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,7 +199,7 @@ public SendBirdBotsMessageResponseMessage addMentionedUsersItem(SendBirdMessageR * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -225,7 +225,7 @@ public SendBirdBotsMessageResponseMessage translations(Object translations) { * Get translations * @return translations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TRANSLATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -251,7 +251,7 @@ public SendBirdBotsMessageResponseMessage updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -277,7 +277,7 @@ public SendBirdBotsMessageResponseMessage isOpMsg(Boolean isOpMsg) { * Get isOpMsg * @return isOpMsg **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_OP_MSG) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -303,7 +303,7 @@ public SendBirdBotsMessageResponseMessage isRemoved(Boolean isRemoved) { * Get isRemoved * @return isRemoved **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REMOVED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -329,7 +329,7 @@ public SendBirdBotsMessageResponseMessage user(SendBirdMessageResponseUser user) * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -355,7 +355,7 @@ public SendBirdBotsMessageResponseMessage _file(Object _file) { * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -381,7 +381,7 @@ public SendBirdBotsMessageResponseMessage message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -407,7 +407,7 @@ public SendBirdBotsMessageResponseMessage data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,7 +433,7 @@ public SendBirdBotsMessageResponseMessage messageRetentionHour(BigDecimal messag * Get messageRetentionHour * @return messageRetentionHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_RETENTION_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -459,7 +459,7 @@ public SendBirdBotsMessageResponseMessage silent(Boolean silent) { * Get silent * @return silent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -485,7 +485,7 @@ public SendBirdBotsMessageResponseMessage type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -511,7 +511,7 @@ public SendBirdBotsMessageResponseMessage createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -537,7 +537,7 @@ public SendBirdBotsMessageResponseMessage channelType(String channelType) { * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -563,7 +563,7 @@ public SendBirdBotsMessageResponseMessage mentionType(String mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -589,7 +589,7 @@ public SendBirdBotsMessageResponseMessage channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -615,7 +615,7 @@ public SendBirdBotsMessageResponseMessage messageId(BigDecimal messageId) { * Get messageId * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -641,7 +641,7 @@ public SendBirdBotsMessageResponseMessage messageEvents(SendBirdBotsMessageRespo * Get messageEvents * @return messageEvents **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_EVENTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -667,7 +667,7 @@ public SendBirdBotsMessageResponseMessage extendedMessagePayload(SendBirdBotsMes * Get extendedMessagePayload * @return extendedMessagePayload **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXTENDED_MESSAGE_PAYLOAD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageExtendedMessagePayload.java b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageExtendedMessagePayload.java index 76cb113a..9fc4b4bd 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageExtendedMessagePayload.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageExtendedMessagePayload.java @@ -38,7 +38,7 @@ SendBirdBotsMessageResponseMessageExtendedMessagePayload.JSON_PROPERTY_CUSTOM_VIEW }) @JsonTypeName("SendBird_BotsMessageResponse_message_extended_message_payload") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBotsMessageResponseMessageExtendedMessagePayload { public static final String JSON_PROPERTY_SUGGESTED_REPLIES = "suggested_replies"; private List suggestedReplies = null; @@ -66,7 +66,7 @@ public SendBirdBotsMessageResponseMessageExtendedMessagePayload addSuggestedRepl * Get suggestedReplies * @return suggestedReplies **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUGGESTED_REPLIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public SendBirdBotsMessageResponseMessageExtendedMessagePayload customView(Objec * Get customView * @return customView **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_VIEW) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageMessageEvents.java b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageMessageEvents.java index 2711659d..3e44916d 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageMessageEvents.java +++ b/src/main/java/org/openapitools/client/model/SendBirdBotsMessageResponseMessageMessageEvents.java @@ -38,7 +38,7 @@ SendBirdBotsMessageResponseMessageMessageEvents.JSON_PROPERTY_UPDATE_LAST_MESSAGE }) @JsonTypeName("SendBird_BotsMessageResponse_message_message_events") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdBotsMessageResponseMessageMessageEvents { public static final String JSON_PROPERTY_SEND_PUSH_NOTIFICATION = "send_push_notification"; private String sendPushNotification; @@ -64,7 +64,7 @@ public SendBirdBotsMessageResponseMessageMessageEvents sendPushNotification(Stri * Get sendPushNotification * @return sendPushNotification **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SEND_PUSH_NOTIFICATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,7 +90,7 @@ public SendBirdBotsMessageResponseMessageMessageEvents updateUnreadCount(Boolean * Get updateUnreadCount * @return updateUnreadCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATE_UNREAD_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public SendBirdBotsMessageResponseMessageMessageEvents updateMentionCount(Boolea * Get updateMentionCount * @return updateMentionCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATE_MENTION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public SendBirdBotsMessageResponseMessageMessageEvents updateLastMessage(Boolean * Get updateLastMessage * @return updateLastMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATE_LAST_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdChannelResponse.java b/src/main/java/org/openapitools/client/model/SendBirdChannelResponse.java index 42c98f40..46a03f88 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdChannelResponse.java +++ b/src/main/java/org/openapitools/client/model/SendBirdChannelResponse.java @@ -44,8 +44,8 @@ import org.sendbird.client.JSON; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.Response; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.core.Response; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; @@ -67,7 +67,7 @@ import com.fasterxml.jackson.databind.ser.std.StdSerializer; import org.sendbird.client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") @JsonDeserialize(using=SendBirdChannelResponse.SendBirdChannelResponseDeserializer.class) @JsonSerialize(using = SendBirdChannelResponse.SendBirdChannelResponseSerializer.class) public class SendBirdChannelResponse extends AbstractOpenApiSchema { diff --git a/src/main/java/org/openapitools/client/model/SendBirdEmoji.java b/src/main/java/org/openapitools/client/model/SendBirdEmoji.java index 27d69632..cc3a402d 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdEmoji.java +++ b/src/main/java/org/openapitools/client/model/SendBirdEmoji.java @@ -36,7 +36,7 @@ SendBirdEmoji.JSON_PROPERTY_URL }) @JsonTypeName("SendBird.Emoji") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdEmoji { public static final String JSON_PROPERTY_KEY = "key"; private String key; @@ -56,7 +56,7 @@ public SendBirdEmoji key(String key) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,7 +82,7 @@ public SendBirdEmoji url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdEmojiCategory.java b/src/main/java/org/openapitools/client/model/SendBirdEmojiCategory.java index c6ff1d96..46809f56 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdEmojiCategory.java +++ b/src/main/java/org/openapitools/client/model/SendBirdEmojiCategory.java @@ -42,7 +42,7 @@ SendBirdEmojiCategory.JSON_PROPERTY_URL }) @JsonTypeName("SendBird.EmojiCategory") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdEmojiCategory { public static final String JSON_PROPERTY_EMOJIS = "emojis"; private List emojis = null; @@ -76,7 +76,7 @@ public SendBirdEmojiCategory addEmojisItem(SendBirdEmoji emojisItem) { * Get emojis * @return emojis **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMOJIS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,7 +102,7 @@ public SendBirdEmojiCategory id(BigDecimal id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public SendBirdEmojiCategory name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public SendBirdEmojiCategory url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdFileMessageParams.java b/src/main/java/org/openapitools/client/model/SendBirdFileMessageParams.java index b4ad6cdd..eb3f3d7e 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdFileMessageParams.java +++ b/src/main/java/org/openapitools/client/model/SendBirdFileMessageParams.java @@ -59,7 +59,7 @@ SendBirdFileMessageParams.JSON_PROPERTY_THUMBNAIL_SIZES }) @JsonTypeName("SendBird.FileMessageParams") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdFileMessageParams { public static final String JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS = "apple_critical_alert_options"; private SendBirdAppleCriticalAlertOptions appleCriticalAlertOptions; @@ -194,7 +194,7 @@ public SendBirdFileMessageParams appleCriticalAlertOptions(SendBirdAppleCritical * Get appleCriticalAlertOptions * @return appleCriticalAlertOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -220,7 +220,7 @@ public SendBirdFileMessageParams customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,7 +246,7 @@ public SendBirdFileMessageParams data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -272,7 +272,7 @@ public SendBirdFileMessageParams _file(Blob _file) { * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -298,7 +298,7 @@ public SendBirdFileMessageParams fileName(String fileName) { * Get fileName * @return fileName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -324,7 +324,7 @@ public SendBirdFileMessageParams fileSize(BigDecimal fileSize) { * Get fileSize * @return fileSize **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public SendBirdFileMessageParams fileUrl(String fileUrl) { * Get fileUrl * @return fileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,7 +376,7 @@ public SendBirdFileMessageParams isReplyToChannel(Boolean isReplyToChannel) { * Get isReplyToChannel * @return isReplyToChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REPLY_TO_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -402,7 +402,7 @@ public SendBirdFileMessageParams mentionType(MentionTypeEnum mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -436,7 +436,7 @@ public SendBirdFileMessageParams addMentionedUserIdsItem(String mentionedUserIds * Get mentionedUserIds * @return mentionedUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -470,7 +470,7 @@ public SendBirdFileMessageParams addMentionedUsersItem(SendBirdUser mentionedUse * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -504,7 +504,7 @@ public SendBirdFileMessageParams addMetaArrayKeysItem(String metaArrayKeysItem) * Get metaArrayKeys * @return metaArrayKeys **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAY_KEYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -538,7 +538,7 @@ public SendBirdFileMessageParams addMetaArraysItem(SendBirdMessageMetaArray meta * Get metaArrays * @return metaArrays **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -564,7 +564,7 @@ public SendBirdFileMessageParams mimeType(String mimeType) { * Get mimeType * @return mimeType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MIME_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -590,7 +590,7 @@ public SendBirdFileMessageParams parentMessageId(BigDecimal parentMessageId) { * Get parentMessageId * @return parentMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -616,7 +616,7 @@ public SendBirdFileMessageParams pushNotificationDeliveryOption(PushNotification * Get pushNotificationDeliveryOption * @return pushNotificationDeliveryOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_NOTIFICATION_DELIVERY_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -650,7 +650,7 @@ public SendBirdFileMessageParams addThumbnailSizesItem(SendBirdThumbnailSize thu * Get thumbnailSizes * @return thumbnailSizes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THUMBNAIL_SIZES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannel.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannel.java index e99b0874..665a6722 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannel.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannel.java @@ -92,7 +92,7 @@ SendBirdGroupChannel.JSON_PROPERTY_CHANNEL }) @JsonTypeName("SendBird.GroupChannel") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannel { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -423,7 +423,7 @@ public SendBirdGroupChannel channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -449,7 +449,7 @@ public SendBirdGroupChannel coverUrl(String coverUrl) { * Get coverUrl * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -475,7 +475,7 @@ public SendBirdGroupChannel createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -501,7 +501,7 @@ public SendBirdGroupChannel createdBy(SendBirdGroupChannelCreatedBy createdBy) { * Get createdBy * @return createdBy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -535,7 +535,7 @@ public SendBirdGroupChannel creator(SendBirdUser creator) { * Get creator * @return creator **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -561,7 +561,7 @@ public SendBirdGroupChannel customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -587,7 +587,7 @@ public SendBirdGroupChannel data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -613,7 +613,7 @@ public SendBirdGroupChannel disappearingMessage(SendBirdGroupChannelDisappearing * Get disappearingMessage * @return disappearingMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DISAPPEARING_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -639,7 +639,7 @@ public SendBirdGroupChannel freeze(Boolean freeze) { * Get freeze * @return freeze **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FREEZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -665,7 +665,7 @@ public SendBirdGroupChannel ignoreProfanityFilter(Boolean ignoreProfanityFilter) * Get ignoreProfanityFilter * @return ignoreProfanityFilter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IGNORE_PROFANITY_FILTER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -691,7 +691,7 @@ public SendBirdGroupChannel hiddenState(HiddenStateEnum hiddenState) { * Get hiddenState * @return hiddenState **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HIDDEN_STATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -717,7 +717,7 @@ public SendBirdGroupChannel invitedAt(BigDecimal invitedAt) { * Get invitedAt * @return invitedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INVITED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -743,7 +743,7 @@ public SendBirdGroupChannel inviter(SendBirdUser inviter) { * Get inviter * @return inviter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INVITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -769,7 +769,7 @@ public SendBirdGroupChannel isAccessCodeRequired(Boolean isAccessCodeRequired) { * Get isAccessCodeRequired * @return isAccessCodeRequired **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ACCESS_CODE_REQUIRED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -795,7 +795,7 @@ public SendBirdGroupChannel isBroadcast(Boolean isBroadcast) { * Get isBroadcast * @return isBroadcast **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_BROADCAST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -821,7 +821,7 @@ public SendBirdGroupChannel isCreated(Boolean isCreated) { * Get isCreated * @return isCreated **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_CREATED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -847,7 +847,7 @@ public SendBirdGroupChannel isDiscoverable(Boolean isDiscoverable) { * Get isDiscoverable * @return isDiscoverable **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_DISCOVERABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -873,7 +873,7 @@ public SendBirdGroupChannel isDistinct(Boolean isDistinct) { * Get isDistinct * @return isDistinct **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_DISTINCT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -899,7 +899,7 @@ public SendBirdGroupChannel isEphemeral(Boolean isEphemeral) { * Get isEphemeral * @return isEphemeral **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_EPHEMERAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -925,7 +925,7 @@ public SendBirdGroupChannel isFrozen(Boolean isFrozen) { * Get isFrozen * @return isFrozen **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_FROZEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -951,7 +951,7 @@ public SendBirdGroupChannel isHidden(Boolean isHidden) { * Get isHidden * @return isHidden **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_HIDDEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -977,7 +977,7 @@ public SendBirdGroupChannel isPublic(Boolean isPublic) { * Get isPublic * @return isPublic **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PUBLIC) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1003,7 +1003,7 @@ public SendBirdGroupChannel isPushEnabled(Boolean isPushEnabled) { * Get isPushEnabled * @return isPushEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PUSH_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1029,7 +1029,7 @@ public SendBirdGroupChannel isSuper(Boolean isSuper) { * Get isSuper * @return isSuper **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_SUPER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1055,7 +1055,7 @@ public SendBirdGroupChannel joinedAt(BigDecimal joinedAt) { * Get joinedAt * @return joinedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_JOINED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1081,7 +1081,7 @@ public SendBirdGroupChannel joinedMemberCount(BigDecimal joinedMemberCount) { * Get joinedMemberCount * @return joinedMemberCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_JOINED_MEMBER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1107,7 +1107,7 @@ public SendBirdGroupChannel lastMessage(SendBirdMessageResponse lastMessage) { * Get lastMessage * @return lastMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -1141,7 +1141,7 @@ public SendBirdGroupChannel maxLengthMessage(BigDecimal maxLengthMessage) { * Get maxLengthMessage * @return maxLengthMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAX_LENGTH_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1167,7 +1167,7 @@ public SendBirdGroupChannel memberCount(BigDecimal memberCount) { * Get memberCount * @return memberCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MEMBER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1201,7 +1201,7 @@ public SendBirdGroupChannel addMembersItem(SendBirdMember membersItem) { * Get members * @return members **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MEMBERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1227,7 +1227,7 @@ public SendBirdGroupChannel messageOffsetTimestamp(BigDecimal messageOffsetTimes * Get messageOffsetTimestamp * @return messageOffsetTimestamp **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_OFFSET_TIMESTAMP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1253,7 +1253,7 @@ public SendBirdGroupChannel messageSurvivalSeconds(BigDecimal messageSurvivalSec * Get messageSurvivalSeconds * @return messageSurvivalSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1279,7 +1279,7 @@ public SendBirdGroupChannel myCountPreference(String myCountPreference) { * Get myCountPreference * @return myCountPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_COUNT_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1305,7 +1305,7 @@ public SendBirdGroupChannel myLastRead(BigDecimal myLastRead) { * Get myLastRead * @return myLastRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_LAST_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1331,7 +1331,7 @@ public SendBirdGroupChannel myMemberState(MyMemberStateEnum myMemberState) { * Get myMemberState * @return myMemberState **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_MEMBER_STATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1357,7 +1357,7 @@ public SendBirdGroupChannel myMutedState(MyMutedStateEnum myMutedState) { * Get myMutedState * @return myMutedState **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_MUTED_STATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1383,7 +1383,7 @@ public SendBirdGroupChannel myPushTriggerOption(MyPushTriggerOptionEnum myPushTr * Get myPushTriggerOption * @return myPushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1409,7 +1409,7 @@ public SendBirdGroupChannel myRole(MyRoleEnum myRole) { * Get myRole * @return myRole **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MY_ROLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1435,7 +1435,7 @@ public SendBirdGroupChannel name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1469,7 +1469,7 @@ public SendBirdGroupChannel addOperatorsItem(Object operatorsItem) { * Get operators * @return operators **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1495,7 +1495,7 @@ public SendBirdGroupChannel smsFallback(SendBirdGroupChannelSmsFallback smsFallb * Get smsFallback * @return smsFallback **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SMS_FALLBACK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1521,7 +1521,7 @@ public SendBirdGroupChannel unreadMentionCount(BigDecimal unreadMentionCount) { * Get unreadMentionCount * @return unreadMentionCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNREAD_MENTION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1547,7 +1547,7 @@ public SendBirdGroupChannel unreadMessageCount(BigDecimal unreadMessageCount) { * Get unreadMessageCount * @return unreadMessageCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNREAD_MESSAGE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -1573,7 +1573,7 @@ public SendBirdGroupChannel channel(SendBirdGroupChannelChannel channel) { * Get channel * @return channel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelChannel.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelChannel.java index 989bcfec..5359f1fd 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelChannel.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelChannel.java @@ -43,7 +43,7 @@ SendBirdGroupChannelChannel.JSON_PROPERTY_MEMBER_COUNT }) @JsonTypeName("SendBird_GroupChannel_channel") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannelChannel { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -81,7 +81,7 @@ public SendBirdGroupChannelChannel channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,7 +107,7 @@ public SendBirdGroupChannelChannel name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,7 +133,7 @@ public SendBirdGroupChannelChannel coverUrl(String coverUrl) { * Get coverUrl * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,7 +159,7 @@ public SendBirdGroupChannelChannel data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,7 +185,7 @@ public SendBirdGroupChannelChannel createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -211,7 +211,7 @@ public SendBirdGroupChannelChannel customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -237,7 +237,7 @@ public SendBirdGroupChannelChannel maxLengthMessage(BigDecimal maxLengthMessage) * Get maxLengthMessage * @return maxLengthMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAX_LENGTH_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -263,7 +263,7 @@ public SendBirdGroupChannelChannel memberCount(BigDecimal memberCount) { * Get memberCount * @return memberCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MEMBER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCollection.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCollection.java index 0456a2c3..d5138ec0 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCollection.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCollection.java @@ -39,7 +39,7 @@ SendBirdGroupChannelCollection.JSON_PROPERTY_HAS_MORE }) @JsonTypeName("SendBird.GroupChannelCollection") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannelCollection { public static final String JSON_PROPERTY_CHANNEL_LIST = "channel_list"; private List channelList = null; @@ -67,7 +67,7 @@ public SendBirdGroupChannelCollection addChannelListItem(SendBirdGroupChannel ch * Get channelList * @return channelList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public SendBirdGroupChannelCollection hasMore(Boolean hasMore) { * Get hasMore * @return hasMore **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HAS_MORE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCreatedBy.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCreatedBy.java index e42a94b8..174037a8 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCreatedBy.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelCreatedBy.java @@ -38,7 +38,7 @@ SendBirdGroupChannelCreatedBy.JSON_PROPERTY_PROFILE_URL }) @JsonTypeName("SendBird_GroupChannel_created_by") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannelCreatedBy { public static final String JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE = "require_auth_for_profile_image"; private Boolean requireAuthForProfileImage; @@ -64,7 +64,7 @@ public SendBirdGroupChannelCreatedBy requireAuthForProfileImage(Boolean requireA * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,7 +90,7 @@ public SendBirdGroupChannelCreatedBy nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public SendBirdGroupChannelCreatedBy userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public SendBirdGroupChannelCreatedBy profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelDisappearingMessage.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelDisappearingMessage.java index ca722c05..c4329773 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelDisappearingMessage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelDisappearingMessage.java @@ -37,7 +37,7 @@ SendBirdGroupChannelDisappearingMessage.JSON_PROPERTY_IS_TRIGGERED_BY_MESSAGE_READ }) @JsonTypeName("SendBird_GroupChannel_disappearing_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannelDisappearingMessage { public static final String JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS = "message_survival_seconds"; private BigDecimal messageSurvivalSeconds; @@ -57,7 +57,7 @@ public SendBirdGroupChannelDisappearingMessage messageSurvivalSeconds(BigDecimal * Get messageSurvivalSeconds * @return messageSurvivalSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public SendBirdGroupChannelDisappearingMessage isTriggeredByMessageRead(Boolean * Get isTriggeredByMessageRead * @return isTriggeredByMessageRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_TRIGGERED_BY_MESSAGE_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelInviter.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelInviter.java index 6ddb6e34..e5d14d05 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelInviter.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelInviter.java @@ -32,8 +32,8 @@ import org.sendbird.client.JSON; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.Response; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.core.Response; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; @@ -55,7 +55,7 @@ import com.fasterxml.jackson.databind.ser.std.StdSerializer; import org.sendbird.client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-11-07T15:23:06.856887Z[Europe/London]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-11-07T15:23:06.856887Z[Europe/London]") @JsonDeserialize(using=SendBirdGroupChannelInviter.SendBirdGroupChannelInviterDeserializer.class) @JsonSerialize(using = SendBirdGroupChannelInviter.SendBirdGroupChannelInviterSerializer.class) public class SendBirdGroupChannelInviter extends AbstractOpenApiSchema { diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelLastMessage.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelLastMessage.java index 5b2e1216..00337a77 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelLastMessage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelLastMessage.java @@ -34,8 +34,8 @@ import org.sendbird.client.JSON; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.Response; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.core.Response; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; @@ -57,7 +57,7 @@ import com.fasterxml.jackson.databind.ser.std.StdSerializer; import org.sendbird.client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-11-07T15:23:06.856887Z[Europe/London]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-11-07T15:23:06.856887Z[Europe/London]") @JsonDeserialize(using=SendBirdGroupChannelLastMessage.SendBirdGroupChannelLastMessageDeserializer.class) @JsonSerialize(using = SendBirdGroupChannelLastMessage.SendBirdGroupChannelLastMessageSerializer.class) public class SendBirdGroupChannelLastMessage extends AbstractOpenApiSchema { diff --git a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelSmsFallback.java b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelSmsFallback.java index e3027a08..ac36fb30 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdGroupChannelSmsFallback.java +++ b/src/main/java/org/openapitools/client/model/SendBirdGroupChannelSmsFallback.java @@ -39,7 +39,7 @@ SendBirdGroupChannelSmsFallback.JSON_PROPERTY_EXCLUDE_USER_IDS }) @JsonTypeName("SendBird_GroupChannel_sms_fallback") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdGroupChannelSmsFallback { public static final String JSON_PROPERTY_WAIT_SECONDS = "wait_seconds"; private BigDecimal waitSeconds; @@ -59,7 +59,7 @@ public SendBirdGroupChannelSmsFallback waitSeconds(BigDecimal waitSeconds) { * Get waitSeconds * @return waitSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WAIT_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public SendBirdGroupChannelSmsFallback addExcludeUserIdsItem(String excludeUserI * Get excludeUserIds * @return excludeUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXCLUDE_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdMember.java b/src/main/java/org/openapitools/client/model/SendBirdMember.java index ed18fd46..b14cb975 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdMember.java +++ b/src/main/java/org/openapitools/client/model/SendBirdMember.java @@ -62,7 +62,7 @@ SendBirdMember.JSON_PROPERTY_USER_ID }) @JsonTypeName("SendBird.Member") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdMember { public static final String JSON_PROPERTY_CONNECTION_STATUS = "connection_status"; private String connectionStatus; @@ -210,7 +210,7 @@ public SendBirdMember connectionStatus(String connectionStatus) { * Get connectionStatus * @return connectionStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONNECTION_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -236,7 +236,7 @@ public SendBirdMember friendDiscoveryKey(String friendDiscoveryKey) { * Get friendDiscoveryKey * @return friendDiscoveryKey **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -270,7 +270,7 @@ public SendBirdMember friendName(String friendName) { * Get friendName * @return friendName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -304,7 +304,7 @@ public SendBirdMember isActive(Boolean isActive) { * Get isActive * @return isActive **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ACTIVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -330,7 +330,7 @@ public SendBirdMember isMuted(Boolean isMuted) { * Get isMuted * @return isMuted **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_MUTED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -356,7 +356,7 @@ public SendBirdMember lastSeenAt(Integer lastSeenAt) { * Get lastSeenAt * @return lastSeenAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_SEEN_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -382,7 +382,7 @@ public SendBirdMember nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -408,7 +408,7 @@ public SendBirdMember plainProfileUrl(String plainProfileUrl) { * Get plainProfileUrl * @return plainProfileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PLAIN_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -442,7 +442,7 @@ public SendBirdMember addPreferredLanguagesItem(String preferredLanguagesItem) { * Get preferredLanguages * @return preferredLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PREFERRED_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -468,7 +468,7 @@ public SendBirdMember profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -494,7 +494,7 @@ public SendBirdMember requireAuth(Boolean requireAuth) { * Get requireAuth * @return requireAuth **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -520,7 +520,7 @@ public SendBirdMember requireAuthForProfileImage(Boolean requireAuthForProfileIm * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -546,7 +546,7 @@ public SendBirdMember metadata(Object metadata) { * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -572,7 +572,7 @@ public SendBirdMember isOnline(Boolean isOnline) { * Get isOnline * @return isOnline **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ONLINE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -598,7 +598,7 @@ public SendBirdMember mutedEndAt(BigDecimal mutedEndAt) { * Get mutedEndAt * @return mutedEndAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -624,7 +624,7 @@ public SendBirdMember mutedDescription(String mutedDescription) { * Get mutedDescription * @return mutedDescription **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MUTED_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -650,7 +650,7 @@ public SendBirdMember restrictionInfo(SendBirdRestrictionInfo restrictionInfo) { * Get restrictionInfo * @return restrictionInfo **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RESTRICTION_INFO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -676,7 +676,7 @@ public SendBirdMember role(RoleEnum role) { * Get role * @return role **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -710,7 +710,7 @@ public SendBirdMember state(StateEnum state) { * Get state * @return state **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonIgnore @@ -744,7 +744,7 @@ public SendBirdMember userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdMessageMetaArray.java b/src/main/java/org/openapitools/client/model/SendBirdMessageMetaArray.java index 28800759..0ab2aa97 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdMessageMetaArray.java +++ b/src/main/java/org/openapitools/client/model/SendBirdMessageMetaArray.java @@ -38,7 +38,7 @@ SendBirdMessageMetaArray.JSON_PROPERTY_VALUE }) @JsonTypeName("SendBird.MessageMetaArray") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdMessageMetaArray { public static final String JSON_PROPERTY_KEY = "key"; private String key; @@ -58,7 +58,7 @@ public SendBirdMessageMetaArray key(String key) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public SendBirdMessageMetaArray addValueItem(String valueItem) { * Get value * @return value **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdMessageResponse.java b/src/main/java/org/openapitools/client/model/SendBirdMessageResponse.java index 49de1aad..53cca12e 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/SendBirdMessageResponse.java @@ -66,7 +66,7 @@ SendBirdMessageResponse.JSON_PROPERTY_IS_REPLY_TO_CHANNEL }) @JsonTypeName("SendBird.MessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdMessageResponse { public static final String JSON_PROPERTY_REQUIRE_AUTH = "require_auth"; private Boolean requireAuth; @@ -161,7 +161,7 @@ public SendBirdMessageResponse requireAuth(Boolean requireAuth) { * Get requireAuth * @return requireAuth **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -187,7 +187,7 @@ public SendBirdMessageResponse messageSurvivalSeconds(BigDecimal messageSurvival * Get messageSurvivalSeconds * @return messageSurvivalSeconds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_SURVIVAL_SECONDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -213,7 +213,7 @@ public SendBirdMessageResponse customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,7 +247,7 @@ public SendBirdMessageResponse addMentionedUsersItem(SendBirdMessageResponseMent * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -273,7 +273,7 @@ public SendBirdMessageResponse translations(Object translations) { * Get translations * @return translations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TRANSLATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -299,7 +299,7 @@ public SendBirdMessageResponse updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -325,7 +325,7 @@ public SendBirdMessageResponse isOpMsg(Boolean isOpMsg) { * Get isOpMsg * @return isOpMsg **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_OP_MSG) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -351,7 +351,7 @@ public SendBirdMessageResponse isRemoved(Boolean isRemoved) { * Get isRemoved * @return isRemoved **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REMOVED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -377,7 +377,7 @@ public SendBirdMessageResponse user(SendBirdMessageResponseUser user) { * Get user * @return user **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -403,7 +403,7 @@ public SendBirdMessageResponse _file(Object _file) { * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -429,7 +429,7 @@ public SendBirdMessageResponse message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -455,7 +455,7 @@ public SendBirdMessageResponse data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -481,7 +481,7 @@ public SendBirdMessageResponse messageRetentionHour(BigDecimal messageRetentionH * Get messageRetentionHour * @return messageRetentionHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_RETENTION_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -507,7 +507,7 @@ public SendBirdMessageResponse silent(Boolean silent) { * Get silent * @return silent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -533,7 +533,7 @@ public SendBirdMessageResponse type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -559,7 +559,7 @@ public SendBirdMessageResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -585,7 +585,7 @@ public SendBirdMessageResponse channelType(String channelType) { * Get channelType * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -611,7 +611,7 @@ public SendBirdMessageResponse reqId(String reqId) { * Get reqId * @return reqId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQ_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -637,7 +637,7 @@ public SendBirdMessageResponse mentionType(String mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -663,7 +663,7 @@ public SendBirdMessageResponse channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -689,7 +689,7 @@ public SendBirdMessageResponse messageId(BigDecimal messageId) { * Get messageId * @return messageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -715,7 +715,7 @@ public SendBirdMessageResponse size(BigDecimal size) { * Get size * @return size **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -749,7 +749,7 @@ public SendBirdMessageResponse addSortedMetaarrayItem(Object sortedMetaarrayItem * Get sortedMetaarray * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -775,7 +775,7 @@ public SendBirdMessageResponse threadInfo(Object threadInfo) { * Get threadInfo * @return threadInfo **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THREAD_INFO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -801,7 +801,7 @@ public SendBirdMessageResponse parentMessageId(BigDecimal parentMessageId) { * Get parentMessageId * @return parentMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -827,7 +827,7 @@ public SendBirdMessageResponse parentMessageInfo(Object parentMessageInfo) { * Get parentMessageInfo * @return parentMessageInfo **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_INFO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -853,7 +853,7 @@ public SendBirdMessageResponse isReplyToChannel(Boolean isReplyToChannel) { * Get isReplyToChannel * @return isReplyToChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REPLY_TO_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdMessageResponseMentionedUsersInner.java b/src/main/java/org/openapitools/client/model/SendBirdMessageResponseMentionedUsersInner.java index a023503b..ae7c79bb 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdMessageResponseMentionedUsersInner.java +++ b/src/main/java/org/openapitools/client/model/SendBirdMessageResponseMentionedUsersInner.java @@ -39,7 +39,7 @@ SendBirdMessageResponseMentionedUsersInner.JSON_PROPERTY_METADATA }) @JsonTypeName("SendBird_MessageResponse_mentioned_users_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdMessageResponseMentionedUsersInner { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -65,7 +65,7 @@ public SendBirdMessageResponseMentionedUsersInner userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,7 +91,7 @@ public SendBirdMessageResponseMentionedUsersInner nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public SendBirdMessageResponseMentionedUsersInner profileUrl(String profileUrl) * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public SendBirdMessageResponseMentionedUsersInner metadata(OcDeleteChannelByUrl2 * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdMessageResponseUser.java b/src/main/java/org/openapitools/client/model/SendBirdMessageResponseUser.java index 6a24cc5c..ffe68254 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdMessageResponseUser.java +++ b/src/main/java/org/openapitools/client/model/SendBirdMessageResponseUser.java @@ -42,7 +42,7 @@ SendBirdMessageResponseUser.JSON_PROPERTY_METADATA }) @JsonTypeName("SendBird_MessageResponse_user") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdMessageResponseUser { public static final String JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE = "require_auth_for_profile_image"; private Boolean requireAuthForProfileImage; @@ -77,7 +77,7 @@ public SendBirdMessageResponseUser requireAuthForProfileImage(Boolean requireAut * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -103,7 +103,7 @@ public SendBirdMessageResponseUser isActive(Boolean isActive) { * Get isActive * @return isActive **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ACTIVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,7 +129,7 @@ public SendBirdMessageResponseUser role(String role) { * Get role * @return role **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ROLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -155,7 +155,7 @@ public SendBirdMessageResponseUser userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -181,7 +181,7 @@ public SendBirdMessageResponseUser nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -207,7 +207,7 @@ public SendBirdMessageResponseUser profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -233,7 +233,7 @@ public SendBirdMessageResponseUser metadata(OcDeleteChannelByUrl200Response meta * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdOGImage.java b/src/main/java/org/openapitools/client/model/SendBirdOGImage.java index 63efaf3b..2d478cde 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdOGImage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdOGImage.java @@ -41,7 +41,7 @@ SendBirdOGImage.JSON_PROPERTY_WIDTH }) @JsonTypeName("SendBird.OGImage") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdOGImage { public static final String JSON_PROPERTY_ALT = "alt"; private String alt; @@ -73,7 +73,7 @@ public SendBirdOGImage alt(String alt) { * Get alt * @return alt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ALT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public SendBirdOGImage height(BigDecimal height) { * Get height * @return height **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HEIGHT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public SendBirdOGImage secureUrl(String secureUrl) { * Get secureUrl * @return secureUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SECURE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public SendBirdOGImage type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public SendBirdOGImage url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public SendBirdOGImage width(BigDecimal width) { * Get width * @return width **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WIDTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdOGMetaData.java b/src/main/java/org/openapitools/client/model/SendBirdOGMetaData.java index c22383ea..1a5f50e8 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdOGMetaData.java +++ b/src/main/java/org/openapitools/client/model/SendBirdOGMetaData.java @@ -39,7 +39,7 @@ SendBirdOGMetaData.JSON_PROPERTY_URL }) @JsonTypeName("SendBird.OGMetaData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdOGMetaData { public static final String JSON_PROPERTY_DEFAULT_IMAGE = "default_image"; private SendBirdOGImage defaultImage; @@ -65,7 +65,7 @@ public SendBirdOGMetaData defaultImage(SendBirdOGImage defaultImage) { * Get defaultImage * @return defaultImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DEFAULT_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,7 +91,7 @@ public SendBirdOGMetaData description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public SendBirdOGMetaData title(String title) { * Get title * @return title **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TITLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public SendBirdOGMetaData url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdOpenChannel.java b/src/main/java/org/openapitools/client/model/SendBirdOpenChannel.java index a4892d4f..d3e562cd 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdOpenChannel.java +++ b/src/main/java/org/openapitools/client/model/SendBirdOpenChannel.java @@ -52,7 +52,7 @@ SendBirdOpenChannel.JSON_PROPERTY_FREEZE }) @JsonTypeName("SendBird.OpenChannel") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdOpenChannel { public static final String JSON_PROPERTY_NAME = "name"; private String name; @@ -108,7 +108,7 @@ public SendBirdOpenChannel name(String name) { * Get name * @return name **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,7 +134,7 @@ public SendBirdOpenChannel customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,7 +160,7 @@ public SendBirdOpenChannel channelUrl(String channelUrl) { * Get channelUrl * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -186,7 +186,7 @@ public SendBirdOpenChannel createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -212,7 +212,7 @@ public SendBirdOpenChannel coverUrl(String coverUrl) { * Get coverUrl * @return coverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -238,7 +238,7 @@ public SendBirdOpenChannel creator(SendBirdUser creator) { * Get creator * @return creator **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -264,7 +264,7 @@ public SendBirdOpenChannel data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -290,7 +290,7 @@ public SendBirdOpenChannel isDynamicPartitioned(Boolean isDynamicPartitioned) { * Get isDynamicPartitioned * @return isDynamicPartitioned **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_DYNAMIC_PARTITIONED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -316,7 +316,7 @@ public SendBirdOpenChannel isEphemeral(Boolean isEphemeral) { * Get isEphemeral * @return isEphemeral **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_EPHEMERAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -342,7 +342,7 @@ public SendBirdOpenChannel isFrozen(Boolean isFrozen) { * Get isFrozen * @return isFrozen **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_FROZEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -368,7 +368,7 @@ public SendBirdOpenChannel maxLengthMessage(BigDecimal maxLengthMessage) { * Get maxLengthMessage * @return maxLengthMessage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAX_LENGTH_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -402,7 +402,7 @@ public SendBirdOpenChannel addOperatorsItem(SendBirdUser operatorsItem) { * Get operators * @return operators **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPERATORS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -428,7 +428,7 @@ public SendBirdOpenChannel participantCount(BigDecimal participantCount) { * Get participantCount * @return participantCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARTICIPANT_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -454,7 +454,7 @@ public SendBirdOpenChannel freeze(Boolean freeze) { * Get freeze * @return freeze **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FREEZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdPlugin.java b/src/main/java/org/openapitools/client/model/SendBirdPlugin.java index 8f346d61..260027a6 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdPlugin.java +++ b/src/main/java/org/openapitools/client/model/SendBirdPlugin.java @@ -37,7 +37,7 @@ SendBirdPlugin.JSON_PROPERTY_VENDOR }) @JsonTypeName("SendBird.Plugin") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdPlugin { public static final String JSON_PROPERTY_DETAIL = "detail"; private Object detail; @@ -60,7 +60,7 @@ public SendBirdPlugin detail(Object detail) { * Get detail * @return detail **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DETAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,7 +86,7 @@ public SendBirdPlugin type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public SendBirdPlugin vendor(String vendor) { * Get vendor * @return vendor **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VENDOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdPoll.java b/src/main/java/org/openapitools/client/model/SendBirdPoll.java index 828c8608..653d9d82 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdPoll.java +++ b/src/main/java/org/openapitools/client/model/SendBirdPoll.java @@ -39,7 +39,7 @@ SendBirdPoll.JSON_PROPERTY_TITLE }) @JsonTypeName("SendBird.Poll") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdPoll { public static final String JSON_PROPERTY_DETAILS = "details"; private SendBirdPollDetails details; @@ -62,7 +62,7 @@ public SendBirdPoll details(SendBirdPollDetails details) { * Get details * @return details **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DETAILS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -88,7 +88,7 @@ public SendBirdPoll id(BigDecimal id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,7 +114,7 @@ public SendBirdPoll title(String title) { * Get title * @return title **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TITLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdPollDetails.java b/src/main/java/org/openapitools/client/model/SendBirdPollDetails.java index 9e8cb7a4..10bb84eb 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdPollDetails.java +++ b/src/main/java/org/openapitools/client/model/SendBirdPollDetails.java @@ -48,7 +48,7 @@ SendBirdPollDetails.JSON_PROPERTY_VOTER_COUNT }) @JsonTypeName("SendBird.PollDetails") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdPollDetails { public static final String JSON_PROPERTY_ALLOW_MULTIPLE_VOTES = "allow_multiple_votes"; private Boolean allowMultipleVotes; @@ -129,7 +129,7 @@ public SendBirdPollDetails allowMultipleVotes(Boolean allowMultipleVotes) { * Get allowMultipleVotes * @return allowMultipleVotes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ALLOW_MULTIPLE_VOTES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -155,7 +155,7 @@ public SendBirdPollDetails allowUserSuggestion(Boolean allowUserSuggestion) { * Get allowUserSuggestion * @return allowUserSuggestion **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ALLOW_USER_SUGGESTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -181,7 +181,7 @@ public SendBirdPollDetails closeAt(BigDecimal closeAt) { * Get closeAt * @return closeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CLOSE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -207,7 +207,7 @@ public SendBirdPollDetails createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -233,7 +233,7 @@ public SendBirdPollDetails createdBy(String createdBy) { * Get createdBy * @return createdBy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_BY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -259,7 +259,7 @@ public SendBirdPollDetails isAnonymous(Boolean isAnonymous) { * Get isAnonymous * @return isAnonymous **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ANONYMOUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,7 +293,7 @@ public SendBirdPollDetails addOptionsItem(SendBirdPollOption optionsItem) { * Get options * @return options **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -319,7 +319,7 @@ public SendBirdPollDetails status(StatusEnum status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -345,7 +345,7 @@ public SendBirdPollDetails updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -371,7 +371,7 @@ public SendBirdPollDetails voterCount(BigDecimal voterCount) { * Get voterCount * @return voterCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOTER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdPollOption.java b/src/main/java/org/openapitools/client/model/SendBirdPollOption.java index 313b84c1..d0a6bdc8 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdPollOption.java +++ b/src/main/java/org/openapitools/client/model/SendBirdPollOption.java @@ -46,7 +46,7 @@ SendBirdPollOption.JSON_PROPERTY_VOTE_COUNT }) @JsonTypeName("SendBird.PollOption") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdPollOption { public static final String JSON_PROPERTY_CREATED_AT = "created_at"; private BigDecimal createdAt; @@ -84,7 +84,7 @@ public SendBirdPollOption createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -110,7 +110,7 @@ public SendBirdPollOption createdBy(String createdBy) { * Get createdBy * @return createdBy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_BY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,7 +136,7 @@ public SendBirdPollOption id(BigDecimal id) { * Get id * @return id **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -170,7 +170,7 @@ public SendBirdPollOption addPartialVotersItem(SendBirdUser partialVotersItem) { * Get partialVoters * @return partialVoters **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARTIAL_VOTERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,7 +196,7 @@ public SendBirdPollOption pollId(BigDecimal pollId) { * Get pollId * @return pollId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_POLL_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -222,7 +222,7 @@ public SendBirdPollOption text(String text) { * Get text * @return text **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,7 +248,7 @@ public SendBirdPollOption updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -274,7 +274,7 @@ public SendBirdPollOption voteCount(BigDecimal voteCount) { * Get voteCount * @return voteCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOTE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdPollUpdatedVoteCount.java b/src/main/java/org/openapitools/client/model/SendBirdPollUpdatedVoteCount.java index fc51bca6..3beb4c68 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdPollUpdatedVoteCount.java +++ b/src/main/java/org/openapitools/client/model/SendBirdPollUpdatedVoteCount.java @@ -37,7 +37,7 @@ SendBirdPollUpdatedVoteCount.JSON_PROPERTY_VOTE_COUNT }) @JsonTypeName("SendBird.PollUpdatedVoteCount") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdPollUpdatedVoteCount { public static final String JSON_PROPERTY_OPTION_ID = "option_id"; private BigDecimal optionId; @@ -57,7 +57,7 @@ public SendBirdPollUpdatedVoteCount optionId(BigDecimal optionId) { * Get optionId * @return optionId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPTION_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public SendBirdPollUpdatedVoteCount voteCount(BigDecimal voteCount) { * Get voteCount * @return voteCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOTE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdReaction.java b/src/main/java/org/openapitools/client/model/SendBirdReaction.java index fb97c31c..21cac1e7 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdReaction.java +++ b/src/main/java/org/openapitools/client/model/SendBirdReaction.java @@ -40,7 +40,7 @@ SendBirdReaction.JSON_PROPERTY_USER_IDS }) @JsonTypeName("SendBird.Reaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdReaction { public static final String JSON_PROPERTY_KEY = "key"; private String key; @@ -63,7 +63,7 @@ public SendBirdReaction key(String key) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -89,7 +89,7 @@ public SendBirdReaction updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,7 +123,7 @@ public SendBirdReaction addUserIdsItem(String userIdsItem) { * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdRestrictionInfo.java b/src/main/java/org/openapitools/client/model/SendBirdRestrictionInfo.java index c099471f..fce0c0b7 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdRestrictionInfo.java +++ b/src/main/java/org/openapitools/client/model/SendBirdRestrictionInfo.java @@ -38,7 +38,7 @@ SendBirdRestrictionInfo.JSON_PROPERTY_RESTRICTION_TYPE }) @JsonTypeName("SendBird.RestrictionInfo") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdRestrictionInfo { public static final String JSON_PROPERTY_DESCRIPTION = "description"; private String description; @@ -96,7 +96,7 @@ public SendBirdRestrictionInfo description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -122,7 +122,7 @@ public SendBirdRestrictionInfo endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -148,7 +148,7 @@ public SendBirdRestrictionInfo restrictionType(RestrictionTypeEnum restrictionTy * Get restrictionType * @return restrictionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RESTRICTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdScheduledMessage.java b/src/main/java/org/openapitools/client/model/SendBirdScheduledMessage.java index 87267e98..d398ff37 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdScheduledMessage.java +++ b/src/main/java/org/openapitools/client/model/SendBirdScheduledMessage.java @@ -38,7 +38,7 @@ SendBirdScheduledMessage.JSON_PROPERTY_MESSAGE }) @JsonTypeName("SendBird.ScheduledMessage") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdScheduledMessage { public static final String JSON_PROPERTY_SCHEDULED_MESSAGE_ID = "scheduled_message_id"; private BigDecimal scheduledMessageId; @@ -61,7 +61,7 @@ public SendBirdScheduledMessage scheduledMessageId(BigDecimal scheduledMessageId * Get scheduledMessageId * @return scheduledMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public SendBirdScheduledMessage messageType(String messageType) { * Get messageType * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public SendBirdScheduledMessage message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdSender.java b/src/main/java/org/openapitools/client/model/SendBirdSender.java index 73ca4f9c..ff4fc667 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdSender.java +++ b/src/main/java/org/openapitools/client/model/SendBirdSender.java @@ -49,7 +49,7 @@ SendBirdSender.JSON_PROPERTY_USER_ID }) @JsonTypeName("SendBird.Sender") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdSender { public static final String JSON_PROPERTY_CONNECTION_STATUS = "connection_status"; private String connectionStatus; @@ -102,7 +102,7 @@ public SendBirdSender connectionStatus(String connectionStatus) { * Get connectionStatus * @return connectionStatus **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONNECTION_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public SendBirdSender friendDiscoveryKey(String friendDiscoveryKey) { * Get friendDiscoveryKey * @return friendDiscoveryKey **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FRIEND_DISCOVERY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public SendBirdSender friendName(String friendName) { * Get friendName * @return friendName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FRIEND_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,7 +180,7 @@ public SendBirdSender isActive(Boolean isActive) { * Get isActive * @return isActive **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ACTIVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -206,7 +206,7 @@ public SendBirdSender isBlockedByMe(Boolean isBlockedByMe) { * Get isBlockedByMe * @return isBlockedByMe **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_BLOCKED_BY_ME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,7 +232,7 @@ public SendBirdSender lastSeenAt(Integer lastSeenAt) { * Get lastSeenAt * @return lastSeenAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_SEEN_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -258,7 +258,7 @@ public SendBirdSender metadata(Object metadata) { * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -284,7 +284,7 @@ public SendBirdSender nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -310,7 +310,7 @@ public SendBirdSender plainProfileUrl(String plainProfileUrl) { * Get plainProfileUrl * @return plainProfileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PLAIN_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -344,7 +344,7 @@ public SendBirdSender addPreferredLanguagesItem(String preferredLanguagesItem) { * Get preferredLanguages * @return preferredLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PREFERRED_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -370,7 +370,7 @@ public SendBirdSender profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -396,7 +396,7 @@ public SendBirdSender requireAuth(Boolean requireAuth) { * Get requireAuth * @return requireAuth **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -422,7 +422,7 @@ public SendBirdSender userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdThreadInfo.java b/src/main/java/org/openapitools/client/model/SendBirdThreadInfo.java index 2ee4f52a..5cedd30c 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdThreadInfo.java +++ b/src/main/java/org/openapitools/client/model/SendBirdThreadInfo.java @@ -42,7 +42,7 @@ SendBirdThreadInfo.JSON_PROPERTY_UPDATED_AT }) @JsonTypeName("SendBird.ThreadInfo") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdThreadInfo { public static final String JSON_PROPERTY_LAST_REPLIED_AT = "last_replied_at"; private BigDecimal lastRepliedAt; @@ -68,7 +68,7 @@ public SendBirdThreadInfo lastRepliedAt(BigDecimal lastRepliedAt) { * Get lastRepliedAt * @return lastRepliedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_REPLIED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,7 +102,7 @@ public SendBirdThreadInfo addMostRepliedUsersItem(SendBirdUser mostRepliedUsersI * Get mostRepliedUsers * @return mostRepliedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MOST_REPLIED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public SendBirdThreadInfo replyCount(BigDecimal replyCount) { * Get replyCount * @return replyCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REPLY_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,7 +154,7 @@ public SendBirdThreadInfo updatedAt(BigDecimal updatedAt) { * Get updatedAt * @return updatedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPDATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdThumbnailSBObject.java b/src/main/java/org/openapitools/client/model/SendBirdThumbnailSBObject.java index 5380da0a..060c08ad 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdThumbnailSBObject.java +++ b/src/main/java/org/openapitools/client/model/SendBirdThumbnailSBObject.java @@ -41,7 +41,7 @@ SendBirdThumbnailSBObject.JSON_PROPERTY_WIDTH }) @JsonTypeName("SendBird.ThumbnailSBObject") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdThumbnailSBObject { public static final String JSON_PROPERTY_HEIGHT = "height"; private BigDecimal height; @@ -73,7 +73,7 @@ public SendBirdThumbnailSBObject height(BigDecimal height) { * Get height * @return height **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HEIGHT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,7 +99,7 @@ public SendBirdThumbnailSBObject plainUrl(String plainUrl) { * Get plainUrl * @return plainUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PLAIN_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,7 +125,7 @@ public SendBirdThumbnailSBObject realHeight(BigDecimal realHeight) { * Get realHeight * @return realHeight **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REAL_HEIGHT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,7 +151,7 @@ public SendBirdThumbnailSBObject realWidth(BigDecimal realWidth) { * Get realWidth * @return realWidth **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REAL_WIDTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -177,7 +177,7 @@ public SendBirdThumbnailSBObject url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public SendBirdThumbnailSBObject width(BigDecimal width) { * Get width * @return width **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_WIDTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdThumbnailSize.java b/src/main/java/org/openapitools/client/model/SendBirdThumbnailSize.java index df796b30..64914238 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdThumbnailSize.java +++ b/src/main/java/org/openapitools/client/model/SendBirdThumbnailSize.java @@ -37,7 +37,7 @@ SendBirdThumbnailSize.JSON_PROPERTY_MAX_WIDTH }) @JsonTypeName("SendBird.ThumbnailSize") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdThumbnailSize { public static final String JSON_PROPERTY_MAX_HEIGHT = "max_height"; private BigDecimal maxHeight; @@ -57,7 +57,7 @@ public SendBirdThumbnailSize maxHeight(BigDecimal maxHeight) { * Get maxHeight * @return maxHeight **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAX_HEIGHT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public SendBirdThumbnailSize maxWidth(BigDecimal maxWidth) { * Get maxWidth * @return maxWidth **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAX_WIDTH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdUser.java b/src/main/java/org/openapitools/client/model/SendBirdUser.java index 94e18c28..5cc2cbe8 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdUser.java +++ b/src/main/java/org/openapitools/client/model/SendBirdUser.java @@ -61,7 +61,7 @@ SendBirdUser.JSON_PROPERTY_START_AT }) @JsonTypeName("SendBird.User") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdUser { public static final String JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE = "require_auth_for_profile_image"; private Boolean requireAuthForProfileImage; @@ -144,7 +144,7 @@ public SendBirdUser requireAuthForProfileImage(Boolean requireAuthForProfileImag * Get requireAuthForProfileImage * @return requireAuthForProfileImage **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUIRE_AUTH_FOR_PROFILE_IMAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -170,7 +170,7 @@ public SendBirdUser isOnline(Boolean isOnline) { * Get isOnline * @return isOnline **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ONLINE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,7 +196,7 @@ public SendBirdUser userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -222,7 +222,7 @@ public SendBirdUser accessToken(String accessToken) { * Get accessToken * @return accessToken **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACCESS_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,7 +248,7 @@ public SendBirdUser hasEverLoggedIn(Boolean hasEverLoggedIn) { * Get hasEverLoggedIn * @return hasEverLoggedIn **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_HAS_EVER_LOGGED_IN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -274,7 +274,7 @@ public SendBirdUser isActive(Boolean isActive) { * Get isActive * @return isActive **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_ACTIVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -300,7 +300,7 @@ public SendBirdUser lastSeenAt(Integer lastSeenAt) { * Get lastSeenAt * @return lastSeenAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_SEEN_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -326,7 +326,7 @@ public SendBirdUser nickname(String nickname) { * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -360,7 +360,7 @@ public SendBirdUser addDiscoveryKeysItem(String discoveryKeysItem) { * Get discoveryKeys * @return discoveryKeys **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DISCOVERY_KEYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -394,7 +394,7 @@ public SendBirdUser addSessionTokensItem(Object sessionTokensItem) { * Get sessionTokens * @return sessionTokens **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SESSION_TOKENS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -428,7 +428,7 @@ public SendBirdUser addPreferredLanguagesItem(String preferredLanguagesItem) { * Get preferredLanguages * @return preferredLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PREFERRED_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -454,7 +454,7 @@ public SendBirdUser profileUrl(String profileUrl) { * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -480,7 +480,7 @@ public SendBirdUser createdAt(Integer createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -506,7 +506,7 @@ public SendBirdUser phoneNumber(String phoneNumber) { * Get phoneNumber * @return phoneNumber **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PHONE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -532,7 +532,7 @@ public SendBirdUser local(String local) { * Get local * @return local **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LOCAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -558,7 +558,7 @@ public SendBirdUser locale(String locale) { * Get locale * @return locale **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LOCALE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -584,7 +584,7 @@ public SendBirdUser isHideMeFromFriends(Boolean isHideMeFromFriends) { * Get isHideMeFromFriends * @return isHideMeFromFriends **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_HIDE_ME_FROM_FRIENDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -610,7 +610,7 @@ public SendBirdUser isShadowBlocked(Boolean isShadowBlocked) { * Get isShadowBlocked * @return isShadowBlocked **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_SHADOW_BLOCKED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -636,7 +636,7 @@ public SendBirdUser isCreated(Boolean isCreated) { * Get isCreated * @return isCreated **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_CREATED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -662,7 +662,7 @@ public SendBirdUser metadata(Object metadata) { * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -688,7 +688,7 @@ public SendBirdUser description(String description) { * Get description * @return description **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DESCRIPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -714,7 +714,7 @@ public SendBirdUser endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -740,7 +740,7 @@ public SendBirdUser startAt(BigDecimal startAt) { * Get startAt * @return startAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBirdUserMessageParams.java b/src/main/java/org/openapitools/client/model/SendBirdUserMessageParams.java index cab39665..547c83f2 100644 --- a/src/main/java/org/openapitools/client/model/SendBirdUserMessageParams.java +++ b/src/main/java/org/openapitools/client/model/SendBirdUserMessageParams.java @@ -55,7 +55,7 @@ SendBirdUserMessageParams.JSON_PROPERTY_TRANSLATION_TARGET_LANGUAGES }) @JsonTypeName("SendBird.UserMessageParams") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBirdUserMessageParams { public static final String JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS = "apple_critical_alert_options"; private SendBirdAppleCriticalAlertOptions appleCriticalAlertOptions; @@ -184,7 +184,7 @@ public SendBirdUserMessageParams appleCriticalAlertOptions(SendBirdAppleCritical * Get appleCriticalAlertOptions * @return appleCriticalAlertOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -210,7 +210,7 @@ public SendBirdUserMessageParams customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -236,7 +236,7 @@ public SendBirdUserMessageParams data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -262,7 +262,7 @@ public SendBirdUserMessageParams isReplyToChannel(Boolean isReplyToChannel) { * Get isReplyToChannel * @return isReplyToChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_REPLY_TO_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -288,7 +288,7 @@ public SendBirdUserMessageParams mentionType(MentionTypeEnum mentionType) { * Get mentionType * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -322,7 +322,7 @@ public SendBirdUserMessageParams addMentionedUserIdsItem(String mentionedUserIds * Get mentionedUserIds * @return mentionedUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -356,7 +356,7 @@ public SendBirdUserMessageParams addMentionedUsersItem(SendBirdUser mentionedUse * Get mentionedUsers * @return mentionedUsers **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MENTIONED_USERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -382,7 +382,7 @@ public SendBirdUserMessageParams message(String message) { * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -416,7 +416,7 @@ public SendBirdUserMessageParams addMetaArrayKeysItem(String metaArrayKeysItem) * Get metaArrayKeys * @return metaArrayKeys **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAY_KEYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -450,7 +450,7 @@ public SendBirdUserMessageParams addMetaArraysItem(SendBirdMessageMetaArray meta * Get metaArrays * @return metaArrays **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_META_ARRAYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -476,7 +476,7 @@ public SendBirdUserMessageParams parentMessageId(BigDecimal parentMessageId) { * Get parentMessageId * @return parentMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PARENT_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -502,7 +502,7 @@ public SendBirdUserMessageParams pollId(BigDecimal pollId) { * Get pollId * @return pollId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_POLL_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -528,7 +528,7 @@ public SendBirdUserMessageParams pushNotificationDeliveryOption(PushNotification * Get pushNotificationDeliveryOption * @return pushNotificationDeliveryOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_NOTIFICATION_DELIVERY_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -562,7 +562,7 @@ public SendBirdUserMessageParams addTargetLanguagesItem(String targetLanguagesIt * Get targetLanguages * @return targetLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -596,7 +596,7 @@ public SendBirdUserMessageParams addTranslationTargetLanguagesItem(String transl * Get translationTargetLanguages * @return translationTargetLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TRANSLATION_TARGET_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBotSMessageData.java b/src/main/java/org/openapitools/client/model/SendBotSMessageData.java index 13d52e10..0311c551 100644 --- a/src/main/java/org/openapitools/client/model/SendBotSMessageData.java +++ b/src/main/java/org/openapitools/client/model/SendBotSMessageData.java @@ -48,7 +48,7 @@ SendBotSMessageData.JSON_PROPERTY_TARGET_MESSAGE_ID }) @JsonTypeName("sendBot_sMessageData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBotSMessageData { public static final String JSON_PROPERTY_MESSAGE = "message"; private String message; @@ -95,7 +95,7 @@ public SendBotSMessageData message(String message) { * Specifies the content of the message sent by the bot. * @return message **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the content of the message sent by the bot.") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -121,7 +121,7 @@ public SendBotSMessageData channelUrl(String channelUrl) { * Specifies the URL of the channel where the message is sent to. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the channel where the message is sent to.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -147,7 +147,7 @@ public SendBotSMessageData customType(String customType) { * Specifies a custom message type which is used for message grouping. The length is limited to 128 characters. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a custom message type which is used for message grouping. The length is limited to 128 characters.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,7 +173,7 @@ public SendBotSMessageData data(String data) { * Specifies additional message information such as custom font size, font type or `JSON` formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,7 +199,7 @@ public SendBotSMessageData sendPush(Boolean sendPush) { * Determines whether to send a push notification for the message to the members of the channel (Default: true) * @return sendPush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to send a push notification for the message to the members of the channel (Default: true)") @JsonProperty(JSON_PROPERTY_SEND_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -233,7 +233,7 @@ public SendBotSMessageData addMentionedItem(String mentionedItem) { * Specifies an array of one or more IDs of the users who get a notification for the message. * @return mentioned **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of the users who get a notification for the message.") @JsonProperty(JSON_PROPERTY_MENTIONED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -259,7 +259,7 @@ public SendBotSMessageData markAsRead(Boolean markAsRead) { * Determines whether to mark the message as read for the bot. If set to false, the bot's unread_count and read_receipt remain unchanged after the message is sent. (Default: true) * @return markAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to mark the message as read for the bot. If set to false, the bot's unread_count and read_receipt remain unchanged after the message is sent. (Default: true)") @JsonProperty(JSON_PROPERTY_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -285,7 +285,7 @@ public SendBotSMessageData dedupId(String dedupId) { * Specifies the unique ID for the message to prevent the same message data from getting sent to the channel. * @return dedupId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID for the message to prevent the same message data from getting sent to the channel.") @JsonProperty(JSON_PROPERTY_DEDUP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -311,7 +311,7 @@ public SendBotSMessageData createdAt(Integer createdAt) { * Specifies the time that the message was sent, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time that the message was sent, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format.") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -337,7 +337,7 @@ public SendBotSMessageData extendedMessagePayload(SendBotSMessageDataExtendedMes * Get extendedMessagePayload * @return extendedMessagePayload **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EXTENDED_MESSAGE_PAYLOAD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -363,7 +363,7 @@ public SendBotSMessageData targetMessageId(Long targetMessageId) { * Specifies the ID of the user's message which bot's message replies to * @return targetMessageId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the ID of the user's message which bot's message replies to") @JsonProperty(JSON_PROPERTY_TARGET_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendBotSMessageDataExtendedMessagePayload.java b/src/main/java/org/openapitools/client/model/SendBotSMessageDataExtendedMessagePayload.java index 0f42a6b8..de498ee8 100644 --- a/src/main/java/org/openapitools/client/model/SendBotSMessageDataExtendedMessagePayload.java +++ b/src/main/java/org/openapitools/client/model/SendBotSMessageDataExtendedMessagePayload.java @@ -39,7 +39,7 @@ SendBotSMessageDataExtendedMessagePayload.JSON_PROPERTY_CUSTOM_VIEW }) @JsonTypeName("sendBot_sMessageData_extended_message_payload") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendBotSMessageDataExtendedMessagePayload { public static final String JSON_PROPERTY_SUGGESTED_REPLIES = "suggested_replies"; private List suggestedReplies = null; @@ -67,7 +67,7 @@ public SendBotSMessageDataExtendedMessagePayload addSuggestedRepliesItem(String * Specifies an array of suggested replies to be sent with the message. * @return suggestedReplies **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of suggested replies to be sent with the message.") @JsonProperty(JSON_PROPERTY_SUGGESTED_REPLIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public SendBotSMessageDataExtendedMessagePayload customView(Object customView) { * JSON format you want to embed in message, eq : {\"title\": \"title\", \"image\": \"https://link.to/image.jpg\"} * @return customView **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "JSON format you want to embed in message, eq : {\"title\": \"title\", \"image\": \"https://link.to/image.jpg\"}") @JsonProperty(JSON_PROPERTY_CUSTOM_VIEW) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SendMessageData.java b/src/main/java/org/openapitools/client/model/SendMessageData.java index 08973027..8d1654b8 100644 --- a/src/main/java/org/openapitools/client/model/SendMessageData.java +++ b/src/main/java/org/openapitools/client/model/SendMessageData.java @@ -63,7 +63,7 @@ SendMessageData.JSON_PROPERTY_THUMBNAIL3 }) @JsonTypeName("sendMessageData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SendMessageData { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -155,7 +155,7 @@ public SendMessageData userId(String userId) { * Specifies the user ID of the sender. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the user ID of the sender.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -181,7 +181,7 @@ public SendMessageData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -207,7 +207,7 @@ public SendMessageData channelUrl(String channelUrl) { * Specifies the URL of the channel to send a message to. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel to send a message to.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -233,7 +233,7 @@ public SendMessageData messageType(String messageType) { * Specifies the type of the message as MESG, FILE or ADMM * @return messageType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the message as MESG, FILE or ADMM") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -259,7 +259,7 @@ public SendMessageData message(String message) { * Specifies the content of the message. * @return message **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the content of the message.") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -285,7 +285,7 @@ public SendMessageData customType(String customType) { * Specifies a custom message type which is used for message grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a custom message type which is used for message grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -311,7 +311,7 @@ public SendMessageData data(String data) { * Specifies additional message information such as custom font size, font type or `JSON` formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -337,7 +337,7 @@ public SendMessageData sendPush(Boolean sendPush) { * Determines whether to send a push notification for the message to the members of the channel (applicable to group channels only). Unlike text and file messages, a push notification for an admin message is not sent by default. (Default: true) * @return sendPush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to send a push notification for the message to the members of the channel (applicable to group channels only). Unlike text and file messages, a push notification for an admin message is not sent by default. (Default: true)") @JsonProperty(JSON_PROPERTY_SEND_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -363,7 +363,7 @@ public SendMessageData mentionType(String mentionType) { * Specifies the mentioning type which indicates the user scope who will get a notification for the message. Acceptable values are users and channel. If set to users, only the specified users with the mentioned_users property below will get notified. If set to channel, all users in the channel will get notified. (Default: users) * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the mentioning type which indicates the user scope who will get a notification for the message. Acceptable values are users and channel. If set to users, only the specified users with the mentioned_users property below will get notified. If set to channel, all users in the channel will get notified. (Default: users)") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -397,7 +397,7 @@ public SendMessageData addMentionedUserIdsItem(String mentionedUserIdsItem) { * Specifies an array of one or more IDs of the users who will get a notification for the message. * @return mentionedUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of the users who will get a notification for the message.") @JsonProperty(JSON_PROPERTY_MENTIONED_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -423,7 +423,7 @@ public SendMessageData isSilent(Boolean isSilent) { * Determines whether to send a message without updating some of the channel properties. If a message is sent in a channel, with this property set to true, the channel's last_message is updated only for the sender while its unread_message_count remains unchanged for all channel members. Also, the message doesn't send a push notification to message receivers. If the message is sent to a hidden channel, the channel still remains hidden. (Default: false)</br></br> Once the value of this property is set, it can't be reverted. * @return isSilent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to send a message without updating some of the channel properties. If a message is sent in a channel, with this property set to true, the channel's last_message is updated only for the sender while its unread_message_count remains unchanged for all channel members. Also, the message doesn't send a push notification to message receivers. If the message is sent to a hidden channel, the channel still remains hidden. (Default: false)

Once the value of this property is set, it can't be reverted.") @JsonProperty(JSON_PROPERTY_IS_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -449,7 +449,7 @@ public SendMessageData sortedMetaarray(String sortedMetaarray) { * Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified. * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified.") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -475,7 +475,7 @@ public SendMessageData createdAt(Integer createdAt) { * Specifies the time that the message was sent, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. This property can be used when migrating the messages of other system to Sendbird server. If specified, the server sets the message's creation time as the property value. * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time that the message was sent, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. This property can be used when migrating the messages of other system to Sendbird server. If specified, the server sets the message's creation time as the property value.") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -501,7 +501,7 @@ public SendMessageData dedupId(String dedupId) { * Specifies the unique message ID created by other system. In general, this property is used to prevent the same message data from getting inserted when migrating the messages of the other system to Sendbird server. If specified, the server performs a duplicate check using the property value. * @return dedupId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique message ID created by other system. In general, this property is used to prevent the same message data from getting inserted when migrating the messages of the other system to Sendbird server. If specified, the server performs a duplicate check using the property value.") @JsonProperty(JSON_PROPERTY_DEDUP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -527,7 +527,7 @@ public SendMessageData apnsBundleId(String apnsBundleId) { * Specifies the bundle ID of the client app in order to send a push notification to iOS devices. You can find this in Settings > Chat > Notifications > Push notification services * @return apnsBundleId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the bundle ID of the client app in order to send a push notification to iOS devices. You can find this in Settings > Chat > Notifications > Push notification services") @JsonProperty(JSON_PROPERTY_APNS_BUNDLE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -553,7 +553,7 @@ public SendMessageData sound(String sound) { * Specifies the name of the file that sounds for critical alerts. * @return sound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of the file that sounds for critical alerts.") @JsonProperty(JSON_PROPERTY_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -579,7 +579,7 @@ public SendMessageData volume(BigDecimal volume) { * Specifies the volume of the critical alert sound. The volume ranges from 0.0 to 1.0, which indicates silent and full volume, respectively. (Default 1.0) * @return volume **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the volume of the critical alert sound. The volume ranges from 0.0 to 1.0, which indicates silent and full volume, respectively. (Default 1.0)") @JsonProperty(JSON_PROPERTY_VOLUME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -605,7 +605,7 @@ public SendMessageData url(String url) { * Get url * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -631,7 +631,7 @@ public SendMessageData _file(String _file) { * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -657,7 +657,7 @@ public SendMessageData fileName(String fileName) { * Get fileName * @return fileName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -683,7 +683,7 @@ public SendMessageData fileSize(BigDecimal fileSize) { * Get fileSize * @return fileSize **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -709,7 +709,7 @@ public SendMessageData fileType(String fileType) { * Get fileType * @return fileType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -743,7 +743,7 @@ public SendMessageData addThumbnailsItem(String thumbnailsItem) { * Get thumbnails * @return thumbnails **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THUMBNAILS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -769,7 +769,7 @@ public SendMessageData thumbnail1(String thumbnail1) { * Get thumbnail1 * @return thumbnail1 **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THUMBNAIL1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -795,7 +795,7 @@ public SendMessageData thumbnail2(String thumbnail2) { * Get thumbnail2 * @return thumbnail2 **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THUMBNAIL2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -821,7 +821,7 @@ public SendMessageData thumbnail3(String thumbnail3) { * Get thumbnail3 * @return thumbnail3 **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_THUMBNAIL3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterData.java b/src/main/java/org/openapitools/client/model/SetDomainFilterData.java index 0bc54faa..7b536589 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterData.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterData.java @@ -42,7 +42,7 @@ SetDomainFilterData.JSON_PROPERTY_IMAGE_MODERATION }) @JsonTypeName("setDomainFilterData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterData { public static final String JSON_PROPERTY_DOMAIN_FILTER = "domain_filter"; private SetDomainFilterDataDomainFilter domainFilter; @@ -68,7 +68,7 @@ public SetDomainFilterData domainFilter(SetDomainFilterDataDomainFilter domainFi * Get domainFilter * @return domainFilter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DOMAIN_FILTER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public SetDomainFilterData profanityFilter(SetDomainFilterDataProfanityFilter pr * Get profanityFilter * @return profanityFilter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFANITY_FILTER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public SetDomainFilterData profanityTriggeredModeration(SetDomainFilterDataProfa * Get profanityTriggeredModeration * @return profanityTriggeredModeration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFANITY_TRIGGERED_MODERATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,7 +146,7 @@ public SetDomainFilterData imageModeration(SetDomainFilterDataImageModeration im * Get imageModeration * @return imageModeration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IMAGE_MODERATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataDomainFilter.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataDomainFilter.java index 2c976321..af222e90 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataDomainFilter.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataDomainFilter.java @@ -39,7 +39,7 @@ SetDomainFilterDataDomainFilter.JSON_PROPERTY_SHOULD_CHECK_GLOBAL }) @JsonTypeName("setDomainFilterData_domain_filter") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataDomainFilter { public static final String JSON_PROPERTY_DOMAINS = "domains"; private List domains = null; @@ -70,7 +70,7 @@ public SetDomainFilterDataDomainFilter addDomainsItem(String domainsItem) { * Get domains * @return domains **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DOMAINS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,7 +96,7 @@ public SetDomainFilterDataDomainFilter type(Integer type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -122,7 +122,7 @@ public SetDomainFilterDataDomainFilter shouldCheckGlobal(Boolean shouldCheckGlob * Get shouldCheckGlobal * @return shouldCheckGlobal **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOULD_CHECK_GLOBAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModeration.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModeration.java index a944d05d..073ad7a0 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModeration.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModeration.java @@ -39,7 +39,7 @@ SetDomainFilterDataImageModeration.JSON_PROPERTY_CHECK_URLS }) @JsonTypeName("setDomainFilterData_image_moderation") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataImageModeration { public static final String JSON_PROPERTY_TYPE = "type"; private Integer type; @@ -65,7 +65,7 @@ public SetDomainFilterDataImageModeration type(Integer type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,7 +91,7 @@ public SetDomainFilterDataImageModeration softBlock(Boolean softBlock) { * Get softBlock * @return softBlock **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SOFT_BLOCK) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,7 +117,7 @@ public SetDomainFilterDataImageModeration limits(SetDomainFilterDataImageModerat * Get limits * @return limits **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LIMITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public SetDomainFilterDataImageModeration checkUrls(Boolean checkUrls) { * Get checkUrls * @return checkUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHECK_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModerationLimits.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModerationLimits.java index 1f8ff51f..d2ab8d39 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModerationLimits.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataImageModerationLimits.java @@ -39,7 +39,7 @@ SetDomainFilterDataImageModerationLimits.JSON_PROPERTY_RACY }) @JsonTypeName("setDomainFilterData_image_moderation_limits") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataImageModerationLimits { public static final String JSON_PROPERTY_ADULT = "adult"; private Integer adult; @@ -68,7 +68,7 @@ public SetDomainFilterDataImageModerationLimits adult(Integer adult) { * Get adult * @return adult **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ADULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public SetDomainFilterDataImageModerationLimits spoof(Integer spoof) { * Get spoof * @return spoof **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SPOOF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,7 +120,7 @@ public SetDomainFilterDataImageModerationLimits medical(Integer medical) { * Get medical * @return medical **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MEDICAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,7 +146,7 @@ public SetDomainFilterDataImageModerationLimits violence(Integer violence) { * Get violence * @return violence **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VIOLENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -172,7 +172,7 @@ public SetDomainFilterDataImageModerationLimits racy(Integer racy) { * Get racy * @return racy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RACY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilter.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilter.java index e4dde720..5eda9a03 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilter.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilter.java @@ -41,7 +41,7 @@ SetDomainFilterDataProfanityFilter.JSON_PROPERTY_SHOULD_CHECK_GLOBAL }) @JsonTypeName("setDomainFilterData_profanity_filter") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataProfanityFilter { public static final String JSON_PROPERTY_KEYWORDS = "keywords"; private List keywords = null; @@ -75,7 +75,7 @@ public SetDomainFilterDataProfanityFilter addKeywordsItem(String keywordsItem) { * Get keywords * @return keywords **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEYWORDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -109,7 +109,7 @@ public SetDomainFilterDataProfanityFilter addRegexFiltersItem(SetDomainFilterDat * Get regexFilters * @return regexFilters **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REGEX_FILTERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,7 +135,7 @@ public SetDomainFilterDataProfanityFilter type(Integer type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,7 +161,7 @@ public SetDomainFilterDataProfanityFilter shouldCheckGlobal(Boolean shouldCheckG * Get shouldCheckGlobal * @return shouldCheckGlobal **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOULD_CHECK_GLOBAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilterRegexFiltersInner.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilterRegexFiltersInner.java index 6e453d28..5e603062 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilterRegexFiltersInner.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityFilterRegexFiltersInner.java @@ -35,7 +35,7 @@ SetDomainFilterDataProfanityFilterRegexFiltersInner.JSON_PROPERTY_REGEX }) @JsonTypeName("setDomainFilterData_profanity_filter_regex_filters_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataProfanityFilterRegexFiltersInner { public static final String JSON_PROPERTY_REGEX = "regex"; private String regex; @@ -52,7 +52,7 @@ public SetDomainFilterDataProfanityFilterRegexFiltersInner regex(String regex) { * Get regex * @return regex **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REGEX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityTriggeredModeration.java b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityTriggeredModeration.java index 7c24e186..96d437ae 100644 --- a/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityTriggeredModeration.java +++ b/src/main/java/org/openapitools/client/model/SetDomainFilterDataProfanityTriggeredModeration.java @@ -37,7 +37,7 @@ SetDomainFilterDataProfanityTriggeredModeration.JSON_PROPERTY_ACTION }) @JsonTypeName("setDomainFilterData_profanity_triggered_moderation") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class SetDomainFilterDataProfanityTriggeredModeration { public static final String JSON_PROPERTY_COUNT = "count"; private Integer count; @@ -60,7 +60,7 @@ public SetDomainFilterDataProfanityTriggeredModeration count(Integer count) { * Get count * @return count **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,7 +86,7 @@ public SetDomainFilterDataProfanityTriggeredModeration duration(Integer duration * Get duration * @return duration **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DURATION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public SetDomainFilterDataProfanityTriggeredModeration action(Integer action) { * Get action * @return action **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/TranslateMessageIntoOtherLanguagesData.java b/src/main/java/org/openapitools/client/model/TranslateMessageIntoOtherLanguagesData.java index 36820ddd..00abbf38 100644 --- a/src/main/java/org/openapitools/client/model/TranslateMessageIntoOtherLanguagesData.java +++ b/src/main/java/org/openapitools/client/model/TranslateMessageIntoOtherLanguagesData.java @@ -37,7 +37,7 @@ TranslateMessageIntoOtherLanguagesData.JSON_PROPERTY_TARGET_LANGS }) @JsonTypeName("translateMessageIntoOtherLanguagesData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class TranslateMessageIntoOtherLanguagesData { public static final String JSON_PROPERTY_TARGET_LANGS = "target_langs"; private List targetLangs = null; @@ -62,7 +62,7 @@ public TranslateMessageIntoOtherLanguagesData addTargetLangsItem(String targetLa * Specifies an array of one or more codes of [translation](/docs/chat/v3/platform-api/message/translations/translation-engine) to translate the message. * @return targetLangs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more codes of [translation](/docs/chat/v3/platform-api/message/translations/translation-engine) to translate the message.") @JsonProperty(JSON_PROPERTY_TARGET_LANGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdData.java b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdData.java index 4fcf881d..76cfbe00 100644 --- a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdData.java @@ -51,7 +51,7 @@ UpdateAnnouncementByIdData.JSON_PROPERTY_RESUME_AT }) @JsonTypeName("updateAnnouncementByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateAnnouncementByIdData { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -116,7 +116,7 @@ public UpdateAnnouncementByIdData uniqueId(String uniqueId) { * Specifies the unique ID of the announcement to update. * @return uniqueId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the announcement to update.") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public UpdateAnnouncementByIdData action(String action) { * Specifies an action to take on the announcement. If this property is updated, other specified properties in the request are not effective. Acceptable values are limited to remove, pause, resume, and cancel. The [Announcement actions](#2-update-an-announcement-3-how-to-change-announcement-status) table explains each action in detail. * @return action **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an action to take on the announcement. If this property is updated, other specified properties in the request are not effective. Acceptable values are limited to remove, pause, resume, and cancel. The [Announcement actions](#2-update-an-announcement-3-how-to-change-announcement-status) table explains each action in detail.") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,7 +168,7 @@ public UpdateAnnouncementByIdData announcementGroup(String announcementGroup) { * Specifies the name of an announcement group to retrieve. If not specified, all announcements are returned, regardless of their group. * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of an announcement group to retrieve. If not specified, all announcements are returned, regardless of their group.") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,7 +194,7 @@ public UpdateAnnouncementByIdData createChannel(Boolean createChannel) { * Determines whether to create a new channel if there is no existing channel that matches with the target options including target_at and target_list. * @return createChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to create a new channel if there is no existing channel that matches with the target options including target_at and target_list.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -220,7 +220,7 @@ public UpdateAnnouncementByIdData createChannelOptionsName(String createChannelO * Specifies the name of the channel. (Default: Group Channel) * @return createChannelOptionsName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of the channel. (Default: Group Channel)") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,7 +246,7 @@ public UpdateAnnouncementByIdData createChannelOptionsCoverUrl(String createChan * Specifies the URL of the cover image. * @return createChannelOptionsCoverUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the cover image.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_COVER_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -272,7 +272,7 @@ public UpdateAnnouncementByIdData createChannelOptionsCustomType(String createCh * Specifies the custom channel type. * @return createChannelOptionsCustomType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the custom channel type.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -298,7 +298,7 @@ public UpdateAnnouncementByIdData createChannelOptionsData(String createChannelO * Specifies additional channel information such as a long description of the channel or `JSON` formatted string. * @return createChannelOptionsData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional channel information such as a long description of the channel or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -324,7 +324,7 @@ public UpdateAnnouncementByIdData createChannelOptionsDistinct(String createChan * Determines whether to create a [distinct](/docs/chat/v3/platform-api/guides/channel-types#2-group-channel) channel. (Default: true) * @return createChannelOptionsDistinct **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to create a [distinct](/docs/chat/v3/platform-api/guides/channel-types#2-group-channel) channel. (Default: true)") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS_DISTINCT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public UpdateAnnouncementByIdData messageUserId(String messageUserId) { * Specifies the unique ID of the announcement sender. * @return messageUserId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the announcement sender.") @JsonProperty(JSON_PROPERTY_MESSAGE_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,7 +376,7 @@ public UpdateAnnouncementByIdData messageContent(String messageContent) { * Specifies the content of the message. * @return messageContent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the content of the message.") @JsonProperty(JSON_PROPERTY_MESSAGE_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -402,7 +402,7 @@ public UpdateAnnouncementByIdData messageData(String messageData) { * Specifies additional message information such as custom font size, font type or `JSON` formatted string. * @return messageData **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_MESSAGE_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -428,7 +428,7 @@ public UpdateAnnouncementByIdData enablePush(Boolean enablePush) { * Determines whether to turn on push notification for the announcement. If set to true, push notifications will be sent for announcements. * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to turn on push notification for the announcement. If set to true, push notifications will be sent for announcements.") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -454,7 +454,7 @@ public UpdateAnnouncementByIdData scheduledAt(Integer scheduledAt) { * Specifies the time to start the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. (Default: current timestamp) * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to start the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. (Default: current timestamp)") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -480,7 +480,7 @@ public UpdateAnnouncementByIdData endAt(Integer endAt) { * Specifies the time to permanently end the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format, even if the announcement is not sent to all its targets. * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to permanently end the announcement, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format, even if the announcement is not sent to all its targets.") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -506,7 +506,7 @@ public UpdateAnnouncementByIdData ceaseAt(String ceaseAt) { * Specifies the time to temporarily put the announcement on hold in UTC. The string is represented in HHMM format. This property should be specified in conjunction with the resume_at below. * @return ceaseAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to temporarily put the announcement on hold in UTC. The string is represented in HHMM format. This property should be specified in conjunction with the resume_at below.") @JsonProperty(JSON_PROPERTY_CEASE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -532,7 +532,7 @@ public UpdateAnnouncementByIdData resumeAt(String resumeAt) { * Specifies the time to automatically resume the on-hold announcement in UTC. The string is represented in HHMM format. This property should be specified in conjunction with the cease_at above. * @return resumeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time to automatically resume the on-hold announcement in UTC. The string is represented in HHMM format. This property should be specified in conjunction with the cease_at above.") @JsonProperty(JSON_PROPERTY_RESUME_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponse.java b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponse.java index becbd4f6..7660a027 100644 --- a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponse.java @@ -38,7 +38,7 @@ UpdateAnnouncementByIdResponse.JSON_PROPERTY_MESSAGE }) @JsonTypeName("updateAnnouncementByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateAnnouncementByIdResponse { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -61,7 +61,7 @@ public UpdateAnnouncementByIdResponse uniqueId(String uniqueId) { * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public UpdateAnnouncementByIdResponse announcementGroup(String announcementGroup * Get announcementGroup * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public UpdateAnnouncementByIdResponse message(UpdateAnnouncementByIdResponseMess * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponseMessage.java b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponseMessage.java index c83f20b3..1009f403 100644 --- a/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponseMessage.java +++ b/src/main/java/org/openapitools/client/model/UpdateAnnouncementByIdResponseMessage.java @@ -50,7 +50,7 @@ UpdateAnnouncementByIdResponseMessage.JSON_PROPERTY_OPEN_RATE }) @JsonTypeName("updateAnnouncementByIdResponse_message") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateAnnouncementByIdResponseMessage { public static final String JSON_PROPERTY_TYPE = "type"; private String type; @@ -109,7 +109,7 @@ public UpdateAnnouncementByIdResponseMessage type(String type) { * Get type * @return type **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,7 +135,7 @@ public UpdateAnnouncementByIdResponseMessage customType(String customType) { * Get customType * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,7 +161,7 @@ public UpdateAnnouncementByIdResponseMessage userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -187,7 +187,7 @@ public UpdateAnnouncementByIdResponseMessage content(String content) { * Get content * @return content **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CONTENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -213,7 +213,7 @@ public UpdateAnnouncementByIdResponseMessage data(String data) { * Get data * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -239,7 +239,7 @@ public UpdateAnnouncementByIdResponseMessage enablePush(Boolean enablePush) { * Get enablePush * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -265,7 +265,7 @@ public UpdateAnnouncementByIdResponseMessage targetAt(String targetAt) { * Get targetAt * @return targetAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -291,7 +291,7 @@ public UpdateAnnouncementByIdResponseMessage targetUserCount(BigDecimal targetUs * Get targetUserCount * @return targetUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -317,7 +317,7 @@ public UpdateAnnouncementByIdResponseMessage targetChannelCount(BigDecimal targe * Get targetChannelCount * @return targetChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -343,7 +343,7 @@ public UpdateAnnouncementByIdResponseMessage status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -369,7 +369,7 @@ public UpdateAnnouncementByIdResponseMessage scheduledAt(BigDecimal scheduledAt) * Get scheduledAt * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -395,7 +395,7 @@ public UpdateAnnouncementByIdResponseMessage completedAt(BigDecimal completedAt) * Get completedAt * @return completedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -421,7 +421,7 @@ public UpdateAnnouncementByIdResponseMessage sentUserCount(BigDecimal sentUserCo * Get sentUserCount * @return sentUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -447,7 +447,7 @@ public UpdateAnnouncementByIdResponseMessage openCount(BigDecimal openCount) { * Get openCount * @return openCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -473,7 +473,7 @@ public UpdateAnnouncementByIdResponseMessage openRate(BigDecimal openRate) { * Get openRate * @return openRate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdData.java b/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdData.java index 5ee5d706..cd08e223 100644 --- a/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdData.java @@ -44,7 +44,7 @@ UpdateApnsPushConfigurationByIdData.JSON_PROPERTY_APNS_TYPE }) @JsonTypeName("updateApnsPushConfigurationByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateApnsPushConfigurationByIdData { public static final String JSON_PROPERTY_PROVIDER_ID = "provider_id"; private String providerId; @@ -85,7 +85,7 @@ public UpdateApnsPushConfigurationByIdData providerId(String providerId) { * Specifies the provider ID of the push configuration to update. * @return providerId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the provider ID of the push configuration to update.") @JsonProperty(JSON_PROPERTY_PROVIDER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -111,7 +111,7 @@ public UpdateApnsPushConfigurationByIdData apnsCert(File apnsCert) { * In a form of the `multipart/form-data` content type, specifies a [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file of which type is either development or production. Sendbird server scans the content of the file, finds out the certificate type, and then registers the file as the corresponding type. If you upload a wrong file, you will receive an error. You should specify either this property or the apns_type below to inform the server of which certificate type to update. * @return apnsCert **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "In a form of the `multipart/form-data` content type, specifies a [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file of which type is either development or production. Sendbird server scans the content of the file, finds out the certificate type, and then registers the file as the corresponding type. If you upload a wrong file, you will receive an error. You should specify either this property or the apns_type below to inform the server of which certificate type to update.") @JsonProperty(JSON_PROPERTY_APNS_CERT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -137,7 +137,7 @@ public UpdateApnsPushConfigurationByIdData apnsCertEnvType(String apnsCertEnvTyp * Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update. * @return apnsCertEnvType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update.") @JsonProperty(JSON_PROPERTY_APNS_CERT_ENV_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -163,7 +163,7 @@ public UpdateApnsPushConfigurationByIdData apnsCertPassword(String apnsCertPassw * Specifies the password of the cerfificate file which has been set during the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) export. * @return apnsCertPassword **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the password of the cerfificate file which has been set during the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) export.") @JsonProperty(JSON_PROPERTY_APNS_CERT_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -189,7 +189,7 @@ public UpdateApnsPushConfigurationByIdData hasUnreadCountBadge(Boolean hasUnread * Determines whether to badge your client app's icon with the number of a user's unread messages. (Default: true) * @return hasUnreadCountBadge **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to badge your client app's icon with the number of a user's unread messages. (Default: true)") @JsonProperty(JSON_PROPERTY_HAS_UNREAD_COUNT_BADGE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -215,7 +215,7 @@ public UpdateApnsPushConfigurationByIdData contentAvailable(Boolean contentAvail * Determines for your client app whether to perform a silent background update on a user's device. For more information, see the Apple Developer Documentation's [Pushing Updates to Your App Silently](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/pushing_updates_to_your_app_silently). (Default: false) * @return contentAvailable **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for your client app whether to perform a silent background update on a user's device. For more information, see the Apple Developer Documentation's [Pushing Updates to Your App Silently](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/pushing_updates_to_your_app_silently). (Default: false)") @JsonProperty(JSON_PROPERTY_CONTENT_AVAILABLE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -241,7 +241,7 @@ public UpdateApnsPushConfigurationByIdData mutableContent(Boolean mutableContent * Determines for your client app whether or not to modify the payload of a push notification before it is displayed on a user's device. For more information, see the Apple Developer Documentation's [Modifying Content in Newly Delivered Notifications](https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications). (Default: false) * @return mutableContent **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for your client app whether or not to modify the payload of a push notification before it is displayed on a user's device. For more information, see the Apple Developer Documentation's [Modifying Content in Newly Delivered Notifications](https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications). (Default: false)") @JsonProperty(JSON_PROPERTY_MUTABLE_CONTENT) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -267,7 +267,7 @@ public UpdateApnsPushConfigurationByIdData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file can be in the app's main bundle or in the `Library/Sounds` folder of the app's data container. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file can be in the app's main bundle or in the `Library/Sounds` folder of the app's data container.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -293,7 +293,7 @@ public UpdateApnsPushConfigurationByIdData apnsType(String apnsType) { * (Deprecated) Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update. * @return apnsType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "(Deprecated) Specifies the certificate type of the [.p12](/docs/chat/v3/ios/guides/push-notifications#2-step-3-export-a-p12-file-and-upload-to-sendbird-dashboard) file. Acceptable values are development and production. You should specify either this property or the apns_cert above to inform the server of which certificate type to update.") @JsonProperty(JSON_PROPERTY_APNS_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdResponse.java b/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdResponse.java index 3a049d6a..89c232e5 100644 --- a/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateApnsPushConfigurationByIdResponse.java @@ -35,7 +35,7 @@ UpdateApnsPushConfigurationByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("updateApnsPushConfigurationByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateApnsPushConfigurationByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private String pushConfigurations; @@ -52,7 +52,7 @@ public UpdateApnsPushConfigurationByIdResponse pushConfigurations(String pushCon * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateBotByIdData.java b/src/main/java/org/openapitools/client/model/UpdateBotByIdData.java index 2b85e635..4162055d 100644 --- a/src/main/java/org/openapitools/client/model/UpdateBotByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateBotByIdData.java @@ -42,7 +42,7 @@ UpdateBotByIdData.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("updateBotByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateBotByIdData { public static final String JSON_PROPERTY_BOT_USERID = "bot_userid"; private String botUserid; @@ -80,7 +80,7 @@ public UpdateBotByIdData botUserid(String botUserid) { * Specifies the ID of the bot to update. * @return botUserid **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the ID of the bot to update.") @JsonProperty(JSON_PROPERTY_BOT_USERID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -106,7 +106,7 @@ public UpdateBotByIdData botNickname(String botNickname) { * Specifies the bot's nickname. The length is limited to 80 characters. * @return botNickname **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the bot's nickname. The length is limited to 80 characters.") @JsonProperty(JSON_PROPERTY_BOT_NICKNAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -132,7 +132,7 @@ public UpdateBotByIdData botProfileUrl(String botProfileUrl) { * Specifies the URL of the bot's profile image. The size is limited to 2,048 characters. * @return botProfileUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the bot's profile image. The size is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_BOT_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -158,7 +158,7 @@ public UpdateBotByIdData botCallbackUrl(String botCallbackUrl) { * Specifies the server URL where bot is located to receive all events, requests, and data forwarded from an application. For security reasons, it is highly recommended that you use an SSL server. The length is limited to 1,024 characters. * @return botCallbackUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the server URL where bot is located to receive all events, requests, and data forwarded from an application. For security reasons, it is highly recommended that you use an SSL server. The length is limited to 1,024 characters.") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -184,7 +184,7 @@ public UpdateBotByIdData isPrivacyMode(Boolean isPrivacyMode) { * In the channels of where the bot is a member, determines whether to only forward the messages with the specific conditions to the bot or forword all messages to the bot, for privacy concerns. If set to true, only messages that start with a '/' or mention the bot_userid are forwarded to the bot. If set to false, all messages are forwarded. * @return isPrivacyMode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "In the channels of where the bot is a member, determines whether to only forward the messages with the specific conditions to the bot or forword all messages to the bot, for privacy concerns. If set to true, only messages that start with a '/' or mention the bot_userid are forwarded to the bot. If set to false, all messages are forwarded.") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -210,7 +210,7 @@ public UpdateBotByIdData enableMarkAsRead(Boolean enableMarkAsRead) { * Determines whether to mark the bot's message as read upon sending it. (Default: true) * @return enableMarkAsRead **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to mark the bot's message as read upon sending it. (Default: true)") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -236,7 +236,7 @@ public UpdateBotByIdData showMember(Boolean showMember) { * Determines whether to include information about the members of each channel in a callback response. (Default: false) * @return showMember **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to include information about the members of each channel in a callback response. (Default: false)") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -262,7 +262,7 @@ public UpdateBotByIdData channelInvitationPreference(Integer channelInvitationPr * Determines whether the bot automatically joins the channel when invited or joins the channel after manually accepting an invitation using the API. If set to 0, it automatically joins the channel. If set to 1, the latter takes place. (Default: 0) * @return channelInvitationPreference **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether the bot automatically joins the channel when invited or joins the channel after manually accepting an invitation using the API. If set to 0, it automatically joins the channel. If set to 1, the latter takes place. (Default: 0)") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateBotByIdResponse.java b/src/main/java/org/openapitools/client/model/UpdateBotByIdResponse.java index 6d00edf9..6e7169b2 100644 --- a/src/main/java/org/openapitools/client/model/UpdateBotByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateBotByIdResponse.java @@ -42,7 +42,7 @@ UpdateBotByIdResponse.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("updateBotByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateBotByIdResponse { public static final String JSON_PROPERTY_BOT = "bot"; private CreateBotResponseBot bot; @@ -74,7 +74,7 @@ public UpdateBotByIdResponse bot(CreateBotResponseBot bot) { * Get bot * @return bot **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,7 +100,7 @@ public UpdateBotByIdResponse botCallbackUrl(String botCallbackUrl) { * Get botCallbackUrl * @return botCallbackUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public UpdateBotByIdResponse enableMarkAsRead(Boolean enableMarkAsRead) { * Get enableMarkAsRead * @return enableMarkAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public UpdateBotByIdResponse isPrivacyMode(Boolean isPrivacyMode) { * Get isPrivacyMode * @return isPrivacyMode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public UpdateBotByIdResponse showMember(Boolean showMember) { * Get showMember * @return showMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public UpdateBotByIdResponse channelInvitationPreference(BigDecimal channelInvit * Get channelInvitationPreference * @return channelInvitationPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceData.java b/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceData.java index c20ed461..c0887000 100644 --- a/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceData.java +++ b/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceData.java @@ -35,7 +35,7 @@ UpdateChannelInvitationPreferenceData.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("updateChannelInvitationPreferenceData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateChannelInvitationPreferenceData { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public UpdateChannelInvitationPreferenceData autoAccept(Boolean autoAccept) { * Determines for the user whether or not to automatically join a [private](/docs/chat/v3/platform-api/guides/group-channel#-3-private-vs-public) group channel promptly from an invitation without having to accept it. (Default: true) * @return autoAccept **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for the user whether or not to automatically join a [private](/docs/chat/v3/platform-api/guides/group-channel#-3-private-vs-public) group channel promptly from an invitation without having to accept it. (Default: true)") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceResponse.java b/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceResponse.java index 3ccc7ae7..0e26a610 100644 --- a/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateChannelInvitationPreferenceResponse.java @@ -35,7 +35,7 @@ UpdateChannelInvitationPreferenceResponse.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("updateChannelInvitationPreferenceResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateChannelInvitationPreferenceResponse { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public UpdateChannelInvitationPreferenceResponse autoAccept(Boolean autoAccept) * Get autoAccept * @return autoAccept **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateChannelMetacounterData.java b/src/main/java/org/openapitools/client/model/UpdateChannelMetacounterData.java index 83eb90ad..626bd14f 100644 --- a/src/main/java/org/openapitools/client/model/UpdateChannelMetacounterData.java +++ b/src/main/java/org/openapitools/client/model/UpdateChannelMetacounterData.java @@ -37,7 +37,7 @@ UpdateChannelMetacounterData.JSON_PROPERTY_UPSERT }) @JsonTypeName("updateChannelMetacounterData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateChannelMetacounterData { public static final String JSON_PROPERTY_METACOUNTER = "metacounter"; private String metacounter; @@ -60,7 +60,7 @@ public UpdateChannelMetacounterData metacounter(String metacounter) { * Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be an integer. This property can have up to 5 items. * @return metacounter **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be an integer. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METACOUNTER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public UpdateChannelMetacounterData mode(String mode) { * Specifies how to calculate the item value of the metacounter. Acceptable values are increase, decrease, and set. If set to increase, increments the item value of the metacounter by the value specified in the metacounter property, while decrease decrements. set sets the item value to the specified value exactly. (Default: set) * @return mode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies how to calculate the item value of the metacounter. Acceptable values are increase, decrease, and set. If set to increase, increments the item value of the metacounter by the value specified in the metacounter property, while decrease decrements. set sets the item value to the specified value exactly. (Default: set)") @JsonProperty(JSON_PROPERTY_MODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public UpdateChannelMetacounterData upsert(Boolean upsert) { * Get upsert * @return upsert **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPSERT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateChannelMetadataData.java b/src/main/java/org/openapitools/client/model/UpdateChannelMetadataData.java index 12cc3ba9..3e1fb5a6 100644 --- a/src/main/java/org/openapitools/client/model/UpdateChannelMetadataData.java +++ b/src/main/java/org/openapitools/client/model/UpdateChannelMetadataData.java @@ -36,7 +36,7 @@ UpdateChannelMetadataData.JSON_PROPERTY_UPSERT }) @JsonTypeName("updateChannelMetadataData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateChannelMetadataData { public static final String JSON_PROPERTY_METADATA = "metadata"; private Object metadata; @@ -56,7 +56,7 @@ public UpdateChannelMetadataData metadata(Object metadata) { * Specifies a `JSON` object which has key-value items to update. A key can't contain a comma (,) and its length is limited to 128 characters. A value must be a string and its length is limited to 190 characters. This property can have up to 5 items. * @return metadata **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object which has key-value items to update. A key can't contain a comma (,) and its length is limited to 128 characters. A value must be a string and its length is limited to 190 characters. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public UpdateChannelMetadataData upsert(Boolean upsert) { * Get upsert * @return upsert **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_UPSERT) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlData.java b/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlData.java index dda24c88..987cc98c 100644 --- a/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlData.java +++ b/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlData.java @@ -35,7 +35,7 @@ UpdateCountPreferenceOfChannelByUrlData.JSON_PROPERTY_COUNT_PREFERENCE }) @JsonTypeName("updateCountPreferenceOfChannelByUrlData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateCountPreferenceOfChannelByUrlData { public static final String JSON_PROPERTY_COUNT_PREFERENCE = "count_preference"; private String countPreference; @@ -52,7 +52,7 @@ public UpdateCountPreferenceOfChannelByUrlData countPreference(String countPrefe * Determines whether to only count the number of unread messages or the number of unread mentioned messages in the specified group channel. Only the one that is chosen to be preferenced will be counted and added to the total number count after the action. A value of off indicates that both read statuses will not be counted, while all indicates that both read statuses will be counted by the system. A value of unread_message_count_only indicates that only the user's unread messages will be counted in the channel while unread_mentioned_count_only indicates that only the user's unread mentioned messages will be counted. (Default: all) * @return countPreference **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to only count the number of unread messages or the number of unread mentioned messages in the specified group channel. Only the one that is chosen to be preferenced will be counted and added to the total number count after the action. A value of off indicates that both read statuses will not be counted, while all indicates that both read statuses will be counted by the system. A value of unread_message_count_only indicates that only the user's unread messages will be counted in the channel while unread_mentioned_count_only indicates that only the user's unread mentioned messages will be counted. (Default: all)") @JsonProperty(JSON_PROPERTY_COUNT_PREFERENCE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlResponse.java index 9b1dc70f..462b69db 100644 --- a/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateCountPreferenceOfChannelByUrlResponse.java @@ -35,7 +35,7 @@ UpdateCountPreferenceOfChannelByUrlResponse.JSON_PROPERTY_COUNT_PREFERENCE }) @JsonTypeName("updateCountPreferenceOfChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateCountPreferenceOfChannelByUrlResponse { public static final String JSON_PROPERTY_COUNT_PREFERENCE = "count_preference"; private String countPreference; @@ -52,7 +52,7 @@ public UpdateCountPreferenceOfChannelByUrlResponse countPreference(String countP * Get countPreference * @return countPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COUNT_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceData.java b/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceData.java index a895daef..ef19c66f 100644 --- a/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceData.java +++ b/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceData.java @@ -35,7 +35,7 @@ UpdateDefaultChannelInvitationPreferenceData.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("updateDefaultChannelInvitationPreferenceData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateDefaultChannelInvitationPreferenceData { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public UpdateDefaultChannelInvitationPreferenceData autoAccept(Boolean autoAccep * Determines for users within an application whether or not to automatically join a [private](/docs/chat/v3/platform-api/guides/group-channel#-3-private-vs-public) group channel promptly from an invitation without having to accept it. (Default: true) * @return autoAccept **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines for users within an application whether or not to automatically join a [private](/docs/chat/v3/platform-api/guides/group-channel#-3-private-vs-public) group channel promptly from an invitation without having to accept it. (Default: true)") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceResponse.java b/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceResponse.java index 74082522..1d688bd3 100644 --- a/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateDefaultChannelInvitationPreferenceResponse.java @@ -35,7 +35,7 @@ UpdateDefaultChannelInvitationPreferenceResponse.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("updateDefaultChannelInvitationPreferenceResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateDefaultChannelInvitationPreferenceResponse { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public UpdateDefaultChannelInvitationPreferenceResponse autoAccept(Boolean autoA * Get autoAccept * @return autoAccept **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateEmojiCategoryUrlByIdData.java b/src/main/java/org/openapitools/client/model/UpdateEmojiCategoryUrlByIdData.java index dcc6f865..8751b863 100644 --- a/src/main/java/org/openapitools/client/model/UpdateEmojiCategoryUrlByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateEmojiCategoryUrlByIdData.java @@ -36,7 +36,7 @@ UpdateEmojiCategoryUrlByIdData.JSON_PROPERTY_URL }) @JsonTypeName("updateEmojiCategoryUrlByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateEmojiCategoryUrlByIdData { public static final String JSON_PROPERTY_EMOJI_CATEGORY_ID = "emoji_category_id"; private Integer emojiCategoryId; @@ -56,7 +56,7 @@ public UpdateEmojiCategoryUrlByIdData emojiCategoryId(Integer emojiCategoryId) { * Specifies the unique ID of the emoji category to update. * @return emojiCategoryId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the emoji category to update.") @JsonProperty(JSON_PROPERTY_EMOJI_CATEGORY_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public UpdateEmojiCategoryUrlByIdData url(String url) { * Specifies the new URL of the emoji category. * @return url **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the new URL of the emoji category.") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateEmojiUrlByKeyData.java b/src/main/java/org/openapitools/client/model/UpdateEmojiUrlByKeyData.java index 66a285b6..fe9fbad6 100644 --- a/src/main/java/org/openapitools/client/model/UpdateEmojiUrlByKeyData.java +++ b/src/main/java/org/openapitools/client/model/UpdateEmojiUrlByKeyData.java @@ -36,7 +36,7 @@ UpdateEmojiUrlByKeyData.JSON_PROPERTY_URL }) @JsonTypeName("updateEmojiUrlByKeyData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateEmojiUrlByKeyData { public static final String JSON_PROPERTY_EMOJI_KEY = "emoji_key"; private String emojiKey; @@ -56,7 +56,7 @@ public UpdateEmojiUrlByKeyData emojiKey(String emojiKey) { * Specifies the key of the emoji to update. * @return emojiKey **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the key of the emoji to update.") @JsonProperty(JSON_PROPERTY_EMOJI_KEY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public UpdateEmojiUrlByKeyData url(String url) { * Specifies the new image URL of the emoji. * @return url **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the new image URL of the emoji.") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageData.java b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageData.java index 34812067..19f8f7ba 100644 --- a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageData.java +++ b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageData.java @@ -40,7 +40,7 @@ UpdateExtraDataInMessageData.JSON_PROPERTY_UPSERT }) @JsonTypeName("updateExtraDataInMessageData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateExtraDataInMessageData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -72,7 +72,7 @@ public UpdateExtraDataInMessageData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -98,7 +98,7 @@ public UpdateExtraDataInMessageData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -124,7 +124,7 @@ public UpdateExtraDataInMessageData messageId(Integer messageId) { * Specifies the unique ID of the message to update key-values items. * @return messageId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the message to update key-values items.") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -150,7 +150,7 @@ public UpdateExtraDataInMessageData sortedMetaarray(String sortedMetaarray) { * Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified. * @return sortedMetaarray **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object of one or more key-values items which store additional message information. Each item consists of a key and the values in an array. Items are saved and will be returned in the exact order they've been specified.") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -176,7 +176,7 @@ public UpdateExtraDataInMessageData mode(String mode) { * Determines whether to add the specified values in the items or remove the specified values from the existing items. Acceptable values are limited to add and remove. If set to add, the specified values are added only when they are different from the existing values. If set to remove, the specified values are removed only when they have the corresponding ones in the existing values. * @return mode **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to add the specified values in the items or remove the specified values from the existing items. Acceptable values are limited to add and remove. If set to add, the specified values are added only when they are different from the existing values. If set to remove, the specified values are removed only when they have the corresponding ones in the existing values.") @JsonProperty(JSON_PROPERTY_MODE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -202,7 +202,7 @@ public UpdateExtraDataInMessageData upsert(Boolean upsert) { * Determines whether to add new items in addition to updating existing items. If true, new key-values items are added when there are no items with the keys. The existing items are updated with new values when there are already items with the keys. If false, only the items of which keys match the ones you specify are updated with new values. (Default: false) * @return upsert **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to add new items in addition to updating existing items. If true, new key-values items are added when there are no items with the keys. The existing items are updated with new values when there are already items with the keys. If false, only the items of which keys match the ones you specify are updated with new values. (Default: false)") @JsonProperty(JSON_PROPERTY_UPSERT) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponse.java b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponse.java index 8c017c19..addb98e4 100644 --- a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponse.java @@ -38,7 +38,7 @@ UpdateExtraDataInMessageResponse.JSON_PROPERTY_SORTED_METAARRAY }) @JsonTypeName("updateExtraDataInMessageResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateExtraDataInMessageResponse { public static final String JSON_PROPERTY_SORTED_METAARRAY = "sorted_metaarray"; private List sortedMetaarray = null; @@ -63,7 +63,7 @@ public UpdateExtraDataInMessageResponse addSortedMetaarrayItem(UpdateExtraDataIn * Get sortedMetaarray * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponseSortedMetaarrayInner.java b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponseSortedMetaarrayInner.java index c3f21e24..3b3a32a4 100644 --- a/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponseSortedMetaarrayInner.java +++ b/src/main/java/org/openapitools/client/model/UpdateExtraDataInMessageResponseSortedMetaarrayInner.java @@ -38,7 +38,7 @@ UpdateExtraDataInMessageResponseSortedMetaarrayInner.JSON_PROPERTY_KEY }) @JsonTypeName("updateExtraDataInMessageResponse_sorted_metaarray_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateExtraDataInMessageResponseSortedMetaarrayInner { public static final String JSON_PROPERTY_VALUE = "value"; private List value = null; @@ -66,7 +66,7 @@ public UpdateExtraDataInMessageResponseSortedMetaarrayInner addValueItem(String * Get value * @return value **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public UpdateExtraDataInMessageResponseSortedMetaarrayInner key(String key) { * Get key * @return key **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdData.java b/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdData.java index 8c867d35..6bfe1072 100644 --- a/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdData.java @@ -37,7 +37,7 @@ UpdateFcmPushConfigurationByIdData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("updateFcmPushConfigurationByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateFcmPushConfigurationByIdData { public static final String JSON_PROPERTY_PROVIDER_ID = "provider_id"; private String providerId; @@ -60,7 +60,7 @@ public UpdateFcmPushConfigurationByIdData providerId(String providerId) { * Specifies the provider ID of the push configuration to update. * @return providerId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the provider ID of the push configuration to update.") @JsonProperty(JSON_PROPERTY_PROVIDER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public UpdateFcmPushConfigurationByIdData apiKey(String apiKey) { * Specifies the FCM server key to update. * @return apiKey **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the FCM server key to update.") @JsonProperty(JSON_PROPERTY_API_KEY) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public UpdateFcmPushConfigurationByIdData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdResponse.java b/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdResponse.java index 29b2b5a5..a9d581bc 100644 --- a/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateFcmPushConfigurationByIdResponse.java @@ -35,7 +35,7 @@ UpdateFcmPushConfigurationByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("updateFcmPushConfigurationByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateFcmPushConfigurationByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private String pushConfigurations; @@ -52,7 +52,7 @@ public UpdateFcmPushConfigurationByIdResponse pushConfigurations(String pushConf * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdData.java b/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdData.java index 8095d100..e32e03be 100644 --- a/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdData.java @@ -38,7 +38,7 @@ UpdateHmsPushConfigurationByIdData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("updateHmsPushConfigurationByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateHmsPushConfigurationByIdData { public static final String JSON_PROPERTY_PROVIDER_ID = "provider_id"; private String providerId; @@ -64,7 +64,7 @@ public UpdateHmsPushConfigurationByIdData providerId(String providerId) { * Specifies the provider ID of the push configuration to update. * @return providerId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the provider ID of the push configuration to update.") @JsonProperty(JSON_PROPERTY_PROVIDER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public UpdateHmsPushConfigurationByIdData huaweiAppId(String huaweiAppId) { * Specifies the unique ID of application for HMS to update. * @return huaweiAppId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of application for HMS to update.") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,7 +116,7 @@ public UpdateHmsPushConfigurationByIdData huaweiAppSecret(String huaweiAppSecret * Specifies the secret key of the application to update. * @return huaweiAppSecret **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the secret key of the application to update.") @JsonProperty(JSON_PROPERTY_HUAWEI_APP_SECRET) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,7 +142,7 @@ public UpdateHmsPushConfigurationByIdData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app. The file should be located in the `/res/raw` folder.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdResponse.java b/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdResponse.java index 165b2858..35fa38a5 100644 --- a/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateHmsPushConfigurationByIdResponse.java @@ -35,7 +35,7 @@ UpdateHmsPushConfigurationByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("updateHmsPushConfigurationByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateHmsPushConfigurationByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private String pushConfigurations; @@ -52,7 +52,7 @@ public UpdateHmsPushConfigurationByIdResponse pushConfigurations(String pushConf * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateMessageByIdData.java b/src/main/java/org/openapitools/client/model/UpdateMessageByIdData.java index d693c20c..968b91a8 100644 --- a/src/main/java/org/openapitools/client/model/UpdateMessageByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateMessageByIdData.java @@ -45,7 +45,7 @@ UpdateMessageByIdData.JSON_PROPERTY_MENTIONED_USER_IDS }) @JsonTypeName("updateMessageByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateMessageByIdData { public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type"; private String channelType; @@ -86,7 +86,7 @@ public UpdateMessageByIdData channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public UpdateMessageByIdData channelUrl(String channelUrl) { * Specifies the URL of the target channel. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the target channel.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,7 +138,7 @@ public UpdateMessageByIdData messageId(Integer messageId) { * Specifies the unique ID of the message to update. * @return messageId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the message to update.") @JsonProperty(JSON_PROPERTY_MESSAGE_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -164,7 +164,7 @@ public UpdateMessageByIdData messageType(String messageType) { * Specifies the type of the message as ADMM. * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the message as ADMM.") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,7 +190,7 @@ public UpdateMessageByIdData message(String message) { * Specifies the content of the message. * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the content of the message.") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -216,7 +216,7 @@ public UpdateMessageByIdData customType(String customType) { * Specifies a custom message type which is used for message grouping. The length is limited to 128 characters.<br /><br /> Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a custom message type which is used for message grouping. The length is limited to 128 characters.

Custom types are also used within Sendbird's [Advanced analytics](/docs/chat/v3/platform-api/guides/advanced-analytics) to segment metrics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -242,7 +242,7 @@ public UpdateMessageByIdData data(String data) { * Specifies additional message information such as custom font size, font type or `JSON` formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type or `JSON` formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,7 +268,7 @@ public UpdateMessageByIdData mentionType(String mentionType) { * Specifies the mentioning method which indicates the user scope who will get a notification for the message. Acceptable values are users and channel. If set to users, only the specified users with the mentioned_users property below will get notified. If set to channel, all users in the channel will get notified. (Default: users) * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the mentioning method which indicates the user scope who will get a notification for the message. Acceptable values are users and channel. If set to users, only the specified users with the mentioned_users property below will get notified. If set to channel, all users in the channel will get notified. (Default: users)") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -302,7 +302,7 @@ public UpdateMessageByIdData addMentionedUserIdsItem(String mentionedUserIdsItem * Specifies an array of one or more IDs of the users who will get a notification for the message. * @return mentionedUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of the users who will get a notification for the message.") @JsonProperty(JSON_PROPERTY_MENTIONED_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateData.java b/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateData.java index 9e517bb7..88e912a0 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateData.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateData.java @@ -39,7 +39,7 @@ UpdatePushNotificationContentTemplateData.JSON_PROPERTY_TEMPLATE_A_D_M_N }) @JsonTypeName("updatePushNotificationContentTemplateData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushNotificationContentTemplateData { public static final String JSON_PROPERTY_TEMPLATE_NAME = "template_name"; private String templateName; @@ -68,7 +68,7 @@ public UpdatePushNotificationContentTemplateData templateName(String templateNam * Specifies the name of a push notification content template to update. Acceptable values are default and alternative. * @return templateName **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a push notification content template to update. Acceptable values are default and alternative.") @JsonProperty(JSON_PROPERTY_TEMPLATE_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,7 +94,7 @@ public UpdatePushNotificationContentTemplateData template(String template) { * The push notification content template of which content types to be updated and their detailed format. * @return template **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "The push notification content template of which content types to be updated and their detailed format.") @JsonProperty(JSON_PROPERTY_TEMPLATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,7 +120,7 @@ public UpdatePushNotificationContentTemplateData templateMESG(String templateMES * Specifies a format for text messages. We support customization of two fields, which are the sender_name and message. These fields will be replaced with actual corresponding values when sending notification requests to FCM, HMS, or APNs. * @return templateMESG **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a format for text messages. We support customization of two fields, which are the sender_name and message. These fields will be replaced with actual corresponding values when sending notification requests to FCM, HMS, or APNs.") @JsonProperty(JSON_PROPERTY_TEMPLATE_M_E_S_G) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,7 +146,7 @@ public UpdatePushNotificationContentTemplateData templateFILE(String templateFIL * Specifies a format for file messages. We support customization with variables including filename and file_type_friendly. When sending notification requests to FCM, HMS, or APNs, the filename will be replaced with the corresponding string value while the file_type_friendly will indicate the type of the file sent, such as `Audio`, `Image`, and `Video`. * @return templateFILE **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a format for file messages. We support customization with variables including filename and file_type_friendly. When sending notification requests to FCM, HMS, or APNs, the filename will be replaced with the corresponding string value while the file_type_friendly will indicate the type of the file sent, such as `Audio`, `Image`, and `Video`.") @JsonProperty(JSON_PROPERTY_TEMPLATE_F_I_L_E) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,7 +172,7 @@ public UpdatePushNotificationContentTemplateData templateADMN(String templateADM * Specifies a format for admin messages. We support customization of one field, which is the message. This field will be replaced with actual corresponding values when sending notification requests to FCM, HMS, or APNs. * @return templateADMN **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a format for admin messages. We support customization of one field, which is the message. This field will be replaced with actual corresponding values when sending notification requests to FCM, HMS, or APNs.") @JsonProperty(JSON_PROPERTY_TEMPLATE_A_D_M_N) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateResponse.java b/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateResponse.java index ebc92e89..e0b64cba 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushNotificationContentTemplateResponse.java @@ -38,7 +38,7 @@ UpdatePushNotificationContentTemplateResponse.JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES }) @JsonTypeName("updatePushNotificationContentTemplateResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushNotificationContentTemplateResponse { public static final String JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES = "push_message_templates"; private List pushMessageTemplates = null; @@ -63,7 +63,7 @@ public UpdatePushNotificationContentTemplateResponse addPushMessageTemplatesItem * Get pushMessageTemplates * @return pushMessageTemplates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesData.java b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesData.java index dd4ce8c8..65f6c4fe 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesData.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesData.java @@ -49,7 +49,7 @@ UpdatePushPreferencesData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("updatePushPreferencesData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushPreferencesData { public static final String JSON_PROPERTY_PUSH_TRIGGER_OPTION = "push_trigger_option"; private String pushTriggerOption; @@ -102,7 +102,7 @@ public UpdatePushPreferencesData pushTriggerOption(String pushTriggerOption) { * Determines the type of push notification trigger to apply to the user's joined group channels. Valid values are the following:<br />- all (default): when disconnected from Sendbird server, the user receives notifications for all new messages including mentioned messages the user has been mentioned in.<br />- mention_only: when disconnected from Sendbird server, the user only receives notifications for messages the user has been mentioned in.<br />- off: the user doesn't receive any notifications. * @return pushTriggerOption **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines the type of push notification trigger to apply to the user's joined group channels. Valid values are the following:
- all (default): when disconnected from Sendbird server, the user receives notifications for all new messages including mentioned messages the user has been mentioned in.
- mention_only: when disconnected from Sendbird server, the user only receives notifications for messages the user has been mentioned in.
- off: the user doesn't receive any notifications.") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -128,7 +128,7 @@ public UpdatePushPreferencesData doNotDisturb(Boolean doNotDisturb) { * Determines whether to pause notification messages for the user during a specific time of day. (Default: false) * @return doNotDisturb **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to pause notification messages for the user during a specific time of day. (Default: false)") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -154,7 +154,7 @@ public UpdatePushPreferencesData startHour(Integer startHour) { * Specifies the hour to start pausing the notifications for Do Not Disturb of the user. * @return startHour **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the hour to start pausing the notifications for Do Not Disturb of the user.") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -180,7 +180,7 @@ public UpdatePushPreferencesData startMin(Integer startMin) { * Specifies the minute of the hour to start pausing the notifications for Do Not Disturb of the user. * @return startMin **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the minute of the hour to start pausing the notifications for Do Not Disturb of the user.") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -206,7 +206,7 @@ public UpdatePushPreferencesData endHour(Integer endHour) { * Specifies the hour to stop pausing the notifications for Do Not Disturb of the user. * @return endHour **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the hour to stop pausing the notifications for Do Not Disturb of the user.") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -232,7 +232,7 @@ public UpdatePushPreferencesData endMin(Integer endMin) { * Specifies the minute of the hour to stop pausing the notifications for Do Not Disturb of the user. * @return endMin **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the minute of the hour to stop pausing the notifications for Do Not Disturb of the user.") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -258,7 +258,7 @@ public UpdatePushPreferencesData snoozeEnabled(Boolean snoozeEnabled) { * Determines whether to snooze notification messages for the user during a specific period of time. (Default: false) * @return snoozeEnabled **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to snooze notification messages for the user during a specific period of time. (Default: false)") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -284,7 +284,7 @@ public UpdatePushPreferencesData snoozeStartTs(Integer snoozeStartTs) { * Specifies the timestamp of when to start snoozing the notifications, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps). * @return snoozeStartTs **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the timestamp of when to start snoozing the notifications, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps).") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -310,7 +310,7 @@ public UpdatePushPreferencesData snoozeEndTs(Integer snoozeEndTs) { * Specifies the timestamp of when to end snoozing the notifications, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps). * @return snoozeEndTs **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the timestamp of when to end snoozing the notifications, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps).") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -336,7 +336,7 @@ public UpdatePushPreferencesData blockPushFromBots(Boolean blockPushFromBots) { * Determines whether to block push notifications from [all bots](/docs/chat/v3/platform-api/guides/bot-interface#2-list-bots) within the application. If the push_blocked_bot_ids is specified, notifications only from the bots in the property are blocked. (Default: false) * @return blockPushFromBots **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to block push notifications from [all bots](/docs/chat/v3/platform-api/guides/bot-interface#2-list-bots) within the application. If the push_blocked_bot_ids is specified, notifications only from the bots in the property are blocked. (Default: false)") @JsonProperty(JSON_PROPERTY_BLOCK_PUSH_FROM_BOTS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -367,7 +367,7 @@ public UpdatePushPreferencesData addPushBlockedBotIdsItem(Integer pushBlockedBot * Specifies an array of one or more IDs of bots whose push notifications are blocked. This property is effective only when the block_push_from_bots is set to true. * @return pushBlockedBotIds **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies an array of one or more IDs of bots whose push notifications are blocked. This property is effective only when the block_push_from_bots is set to true.") @JsonProperty(JSON_PROPERTY_PUSH_BLOCKED_BOT_IDS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -393,7 +393,7 @@ public UpdatePushPreferencesData timezone(String timezone) { * Specifies the timezone to be applied to push preferences with a value such as UTC, Asia/Seoul, Europe/London, etc. * @return timezone **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the timezone to be applied to push preferences with a value such as UTC, Asia/Seoul, Europe/London, etc.") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -419,7 +419,7 @@ public UpdatePushPreferencesData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to your client app. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to your client app.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlData.java b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlData.java index 15a3ad7b..7144d4cb 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlData.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlData.java @@ -37,7 +37,7 @@ UpdatePushPreferencesForChannelByUrlData.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("updatePushPreferencesForChannelByUrlData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushPreferencesForChannelByUrlData { public static final String JSON_PROPERTY_PUSH_TRIGGER_OPTION = "push_trigger_option"; private String pushTriggerOption; @@ -60,7 +60,7 @@ public UpdatePushPreferencesForChannelByUrlData pushTriggerOption(String pushTri * Determines the type of push notification trigger to apply to the speficied channel. Acceptable values are limited to the following:<br />- default: the user's push notification trigger setting automatically applies to the channel. This is the default setting.<br />- all: when disconnected from Sendbird server, the user receives notifications for all new messages in the channel including messages the user has been mentioned in.<br />- mention_only: when disconnected from Sendbird server, the user only receives notifications for messages in the channel the user has been mentioned in.<br />- off: the user doesn't receive any notifications in the channel. * @return pushTriggerOption **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines the type of push notification trigger to apply to the speficied channel. Acceptable values are limited to the following:
- default: the user's push notification trigger setting automatically applies to the channel. This is the default setting.
- all: when disconnected from Sendbird server, the user receives notifications for all new messages in the channel including messages the user has been mentioned in.
- mention_only: when disconnected from Sendbird server, the user only receives notifications for messages in the channel the user has been mentioned in.
- off: the user doesn't receive any notifications in the channel.") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public UpdatePushPreferencesForChannelByUrlData enable(Boolean enable) { * (Deprecated) Determines whether notification messages for the user are delivered to the group channel. (default: true) * @return enable **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "(Deprecated) Determines whether notification messages for the user are delivered to the group channel. (default: true)") @JsonProperty(JSON_PROPERTY_ENABLE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public UpdatePushPreferencesForChannelByUrlData pushSound(String pushSound) { * Specifies the name of a sound file to be played when a push notification is delivered to the specified channel. * @return pushSound **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the name of a sound file to be played when a push notification is delivered to the specified channel.") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlResponse.java index 8ef0d5ad..9301ded9 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesForChannelByUrlResponse.java @@ -47,7 +47,7 @@ UpdatePushPreferencesForChannelByUrlResponse.JSON_PROPERTY_ENABLE }) @JsonTypeName("updatePushPreferencesForChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushPreferencesForChannelByUrlResponse { public static final String JSON_PROPERTY_PUSH_TRIGGER_OPTION = "push_trigger_option"; private String pushTriggerOption; @@ -97,7 +97,7 @@ public UpdatePushPreferencesForChannelByUrlResponse pushTriggerOption(String pus * Get pushTriggerOption * @return pushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,7 +123,7 @@ public UpdatePushPreferencesForChannelByUrlResponse doNotDisturb(Boolean doNotDi * Get doNotDisturb * @return doNotDisturb **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -149,7 +149,7 @@ public UpdatePushPreferencesForChannelByUrlResponse startHour(BigDecimal startHo * Get startHour * @return startHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -175,7 +175,7 @@ public UpdatePushPreferencesForChannelByUrlResponse startMin(BigDecimal startMin * Get startMin * @return startMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,7 +201,7 @@ public UpdatePushPreferencesForChannelByUrlResponse endHour(BigDecimal endHour) * Get endHour * @return endHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -227,7 +227,7 @@ public UpdatePushPreferencesForChannelByUrlResponse endMin(BigDecimal endMin) { * Get endMin * @return endMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -253,7 +253,7 @@ public UpdatePushPreferencesForChannelByUrlResponse snoozeEnabled(Boolean snooze * Get snoozeEnabled * @return snoozeEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -279,7 +279,7 @@ public UpdatePushPreferencesForChannelByUrlResponse snoozeStartTs(BigDecimal sno * Get snoozeStartTs * @return snoozeStartTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,7 +305,7 @@ public UpdatePushPreferencesForChannelByUrlResponse snoozeEndTs(BigDecimal snooz * Get snoozeEndTs * @return snoozeEndTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -331,7 +331,7 @@ public UpdatePushPreferencesForChannelByUrlResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -357,7 +357,7 @@ public UpdatePushPreferencesForChannelByUrlResponse pushSound(String pushSound) * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -383,7 +383,7 @@ public UpdatePushPreferencesForChannelByUrlResponse enable(Boolean enable) { * Get enable * @return enable **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesResponse.java b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesResponse.java index 00dad4c0..77f7dc1a 100644 --- a/src/main/java/org/openapitools/client/model/UpdatePushPreferencesResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdatePushPreferencesResponse.java @@ -51,7 +51,7 @@ UpdatePushPreferencesResponse.JSON_PROPERTY_PUSH_SOUND }) @JsonTypeName("updatePushPreferencesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdatePushPreferencesResponse { public static final String JSON_PROPERTY_BLOCK_PUSH_FROM_BOTS = "block_push_from_bots"; private Boolean blockPushFromBots; @@ -107,7 +107,7 @@ public UpdatePushPreferencesResponse blockPushFromBots(Boolean blockPushFromBots * Get blockPushFromBots * @return blockPushFromBots **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BLOCK_PUSH_FROM_BOTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,7 +133,7 @@ public UpdatePushPreferencesResponse enablePushForReplies(Boolean enablePushForR * Get enablePushForReplies * @return enablePushForReplies **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH_FOR_REPLIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -167,7 +167,7 @@ public UpdatePushPreferencesResponse addPushBlockedBotIdsItem(String pushBlocked * Get pushBlockedBotIds * @return pushBlockedBotIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_BLOCKED_BOT_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,7 +193,7 @@ public UpdatePushPreferencesResponse pushTriggerOption(String pushTriggerOption) * Get pushTriggerOption * @return pushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -219,7 +219,7 @@ public UpdatePushPreferencesResponse doNotDisturb(Boolean doNotDisturb) { * Get doNotDisturb * @return doNotDisturb **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -245,7 +245,7 @@ public UpdatePushPreferencesResponse startHour(BigDecimal startHour) { * Get startHour * @return startHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,7 +271,7 @@ public UpdatePushPreferencesResponse startMin(BigDecimal startMin) { * Get startMin * @return startMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,7 +297,7 @@ public UpdatePushPreferencesResponse endHour(BigDecimal endHour) { * Get endHour * @return endHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -323,7 +323,7 @@ public UpdatePushPreferencesResponse endMin(BigDecimal endMin) { * Get endMin * @return endMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -349,7 +349,7 @@ public UpdatePushPreferencesResponse snoozeEnabled(Boolean snoozeEnabled) { * Get snoozeEnabled * @return snoozeEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -375,7 +375,7 @@ public UpdatePushPreferencesResponse snoozeStartTs(BigDecimal snoozeStartTs) { * Get snoozeStartTs * @return snoozeStartTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,7 +401,7 @@ public UpdatePushPreferencesResponse snoozeEndTs(BigDecimal snoozeEndTs) { * Get snoozeEndTs * @return snoozeEndTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -427,7 +427,7 @@ public UpdatePushPreferencesResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,7 +453,7 @@ public UpdatePushPreferencesResponse pushSound(String pushSound) { * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateUserByIdData.java b/src/main/java/org/openapitools/client/model/UpdateUserByIdData.java index a64a3f56..3820c392 100644 --- a/src/main/java/org/openapitools/client/model/UpdateUserByIdData.java +++ b/src/main/java/org/openapitools/client/model/UpdateUserByIdData.java @@ -49,7 +49,7 @@ UpdateUserByIdData.JSON_PROPERTY_LEAVE_ALL_WHEN_DEACTIVATED }) @JsonTypeName("updateUserByIdData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateUserByIdData { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -99,7 +99,7 @@ public UpdateUserByIdData userId(String userId) { * Specifies the unique ID of the user to update. * @return userId **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the unique ID of the user to update.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -125,7 +125,7 @@ public UpdateUserByIdData nickname(String nickname) { * Specifies the user's nickname. The length is limited to 80 characters. * @return nickname **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the user's nickname. The length is limited to 80 characters.") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -151,7 +151,7 @@ public UpdateUserByIdData profileUrl(String profileUrl) { * Specifies the URL of the user's profile image. The length is limited to 2,048 characters.<br /><br /> The [domain filter](/docs/chat/v3/platform-api/guides/filter-and-moderation#2-domain-filter) filters out the request if the value of this property matches the filter's domain set. * @return profileUrl **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies the URL of the user's profile image. The length is limited to 2,048 characters.

The [domain filter](/docs/chat/v3/platform-api/guides/filter-and-moderation#2-domain-filter) filters out the request if the value of this property matches the filter's domain set.") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -177,7 +177,7 @@ public UpdateUserByIdData profileFile(File profileFile) { * Uploads the file of the user's profile image. An acceptable image is limited to `JPG` (.jpg), `JPEG` (.jpeg), or `PNG` (.png) file of up to 25 MB. * @return profileFile **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Uploads the file of the user's profile image. An acceptable image is limited to `JPG` (.jpg), `JPEG` (.jpeg), or `PNG` (.png) file of up to 25 MB.") @JsonProperty(JSON_PROPERTY_PROFILE_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,7 +203,7 @@ public UpdateUserByIdData issueAccessToken(Boolean issueAccessToken) { * Determines whether to revoke the existing access token and create a new one for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, an access token is not required when the user logs in. (Default: false) * @return issueAccessToken **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to revoke the existing access token and create a new one for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, an access token is not required when the user logs in. (Default: false)") @JsonProperty(JSON_PROPERTY_ISSUE_ACCESS_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -229,7 +229,7 @@ public UpdateUserByIdData issueSessionToken(Boolean issueSessionToken) { * Determines whether to add a new session token for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, a session token is not required when the user logs in. (Default: false) * @return issueSessionToken **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to add a new session token for the user. If true, an opaque string token is issued and provided upon creation, which should be passed whenever the user logs in. If false, a session token is not required when the user logs in. (Default: false)") @JsonProperty(JSON_PROPERTY_ISSUE_SESSION_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -255,7 +255,7 @@ public UpdateUserByIdData sessionTokenExpiresAt(Integer sessionTokenExpiresAt) { * Specifies the time for the issued session token to expire in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The length should be 13. If not specified and the issue_session_token property above is true, the value of this property is set to the sum of the current timestamp and 604800000 by default, which indicates that the token will be valid for the next 7 days starting from the current timestamp. * @return sessionTokenExpiresAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time for the issued session token to expire in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. The length should be 13. If not specified and the issue_session_token property above is true, the value of this property is set to the sum of the current timestamp and 604800000 by default, which indicates that the token will be valid for the next 7 days starting from the current timestamp.") @JsonProperty(JSON_PROPERTY_SESSION_TOKEN_EXPIRES_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -281,7 +281,7 @@ public UpdateUserByIdData isActive(Boolean isActive) { * Determines whether to activate or deactivate the user within the application. * @return isActive **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to activate or deactivate the user within the application.") @JsonProperty(JSON_PROPERTY_IS_ACTIVE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -307,7 +307,7 @@ public UpdateUserByIdData lastSeenAt(Integer lastSeenAt) { * Specifies the time when the user goes offline, to indicate when they were last online, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format. * @return lastSeenAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the time when the user goes offline, to indicate when they were last online, in [Unix milliseconds](/docs/chat/v3/platform-api/guides/miscellaneous#2-timestamps) format.") @JsonProperty(JSON_PROPERTY_LAST_SEEN_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -341,7 +341,7 @@ public UpdateUserByIdData addDiscoveryKeysItem(String discoveryKeysItem) { * Specifies an array of unique keys of the user which is provided to Sendbird server for discovering friends. By using the keys, the server can identify and match the user with other users. * @return discoveryKeys **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of unique keys of the user which is provided to Sendbird server for discovering friends. By using the keys, the server can identify and match the user with other users.") @JsonProperty(JSON_PROPERTY_DISCOVERY_KEYS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -375,7 +375,7 @@ public UpdateUserByIdData addPreferredLanguagesItem(String preferredLanguagesIte * Specifies an array of one or more [language codes](/docs/chat/v3/platform-api/guides/miscellaneous#2-language-codes-for-auto-translation) to translate notification messages to preferred languages. Up to 4 languages can be set for the user. If messages are sent in one of the preferred languages, notification messages won't be translated. If messages are sent in a language other than the preferred languages, notification messages will be translated into the first language in the array. In addition, the messages translated into other preferred languages will be provided in the `sendbird` property of a notification message payload. * @return preferredLanguages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more [language codes](/docs/chat/v3/platform-api/guides/miscellaneous#2-language-codes-for-auto-translation) to translate notification messages to preferred languages. Up to 4 languages can be set for the user. If messages are sent in one of the preferred languages, notification messages won't be translated. If messages are sent in a language other than the preferred languages, notification messages will be translated into the first language in the array. In addition, the messages translated into other preferred languages will be provided in the `sendbird` property of a notification message payload.") @JsonProperty(JSON_PROPERTY_PREFERRED_LANGUAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,7 +401,7 @@ public UpdateUserByIdData leaveAllWhenDeactivated(Boolean leaveAllWhenDeactivate * Determines whether the user leaves all joined group channels upon deactivation. Note that this value is true by default. Use in conjunction with the is_active property above. * @return leaveAllWhenDeactivated **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether the user leaves all joined group channels upon deactivation. Note that this value is true by default. Use in conjunction with the is_active property above.") @JsonProperty(JSON_PROPERTY_LEAVE_ALL_WHEN_DEACTIVATED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UpdateUserMetadataData.java b/src/main/java/org/openapitools/client/model/UpdateUserMetadataData.java index 220863a1..131c80d1 100644 --- a/src/main/java/org/openapitools/client/model/UpdateUserMetadataData.java +++ b/src/main/java/org/openapitools/client/model/UpdateUserMetadataData.java @@ -36,7 +36,7 @@ UpdateUserMetadataData.JSON_PROPERTY_UPSERT }) @JsonTypeName("updateUserMetadataData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateUserMetadataData { public static final String JSON_PROPERTY_METADATA = "metadata"; private Object metadata; @@ -56,7 +56,7 @@ public UpdateUserMetadataData metadata(Object metadata) { * Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items. * @return metadata **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Specifies a `JSON` object that stores key-value items. The key must not have a comma (,) and its length is limited to 128 characters. The value must be a string and its length is limited to 190 characters. This property can have up to 5 items.") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -82,7 +82,7 @@ public UpdateUserMetadataData upsert(Boolean upsert) { * Get upsert * @return upsert **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_UPSERT) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UpdateUserMetadataResponse.java b/src/main/java/org/openapitools/client/model/UpdateUserMetadataResponse.java index fb190f7b..65ac0269 100644 --- a/src/main/java/org/openapitools/client/model/UpdateUserMetadataResponse.java +++ b/src/main/java/org/openapitools/client/model/UpdateUserMetadataResponse.java @@ -39,7 +39,7 @@ UpdateUserMetadataResponse.JSON_PROPERTY_UPSERT }) @JsonTypeName("updateUserMetadataResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UpdateUserMetadataResponse { public static final String JSON_PROPERTY_METADATA = "metadata"; private Map metadata = null; @@ -67,7 +67,7 @@ public UpdateUserMetadataResponse putMetadataItem(String key, String metadataIte * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public UpdateUserMetadataResponse upsert(Boolean upsert) { * Get upsert * @return upsert **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UPSERT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/UseDefaultEmojisData.java b/src/main/java/org/openapitools/client/model/UseDefaultEmojisData.java index 5256bd5e..24900193 100644 --- a/src/main/java/org/openapitools/client/model/UseDefaultEmojisData.java +++ b/src/main/java/org/openapitools/client/model/UseDefaultEmojisData.java @@ -35,7 +35,7 @@ UseDefaultEmojisData.JSON_PROPERTY_USE_DEFAULT_EMOJI }) @JsonTypeName("useDefaultEmojisData") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UseDefaultEmojisData { public static final String JSON_PROPERTY_USE_DEFAULT_EMOJI = "use_default_emoji"; private Boolean useDefaultEmoji; @@ -52,7 +52,7 @@ public UseDefaultEmojisData useDefaultEmoji(Boolean useDefaultEmoji) { * Determines whether to use the 7 default emojis initially provided. * @return useDefaultEmoji **/ - @javax.annotation.Nonnull + @jakarta.annotation.Nonnull @ApiModelProperty(required = true, value = "Determines whether to use the 7 default emojis initially provided.") @JsonProperty(JSON_PROPERTY_USE_DEFAULT_EMOJI) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/src/main/java/org/openapitools/client/model/UseDefaultEmojisResponse.java b/src/main/java/org/openapitools/client/model/UseDefaultEmojisResponse.java index 60925944..516cddcc 100644 --- a/src/main/java/org/openapitools/client/model/UseDefaultEmojisResponse.java +++ b/src/main/java/org/openapitools/client/model/UseDefaultEmojisResponse.java @@ -35,7 +35,7 @@ UseDefaultEmojisResponse.JSON_PROPERTY_USE_DEFAULT_EMOJI }) @JsonTypeName("useDefaultEmojisResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UseDefaultEmojisResponse { public static final String JSON_PROPERTY_USE_DEFAULT_EMOJI = "use_default_emoji"; private Boolean useDefaultEmoji; @@ -52,7 +52,7 @@ public UseDefaultEmojisResponse useDefaultEmoji(Boolean useDefaultEmoji) { * Get useDefaultEmoji * @return useDefaultEmoji **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USE_DEFAULT_EMOJI) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGet200Response.java b/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGet200Response.java index 83ffc858..88cd685f 100644 --- a/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGet200Response.java +++ b/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGet200Response.java @@ -35,7 +35,7 @@ V3ApplicationsPushSettingsGet200Response.JSON_PROPERTY_PUSH_ENABLED }) @JsonTypeName("_v3_applications_push_settings_get_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3ApplicationsPushSettingsGet200Response { public static final String JSON_PROPERTY_PUSH_ENABLED = "push_enabled"; private Boolean pushEnabled; @@ -52,7 +52,7 @@ public V3ApplicationsPushSettingsGet200Response pushEnabled(Boolean pushEnabled) * Get pushEnabled * @return pushEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGetRequest.java b/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGetRequest.java index 04beb56e..383bd66b 100644 --- a/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGetRequest.java +++ b/src/main/java/org/openapitools/client/model/V3ApplicationsPushSettingsGetRequest.java @@ -35,7 +35,7 @@ V3ApplicationsPushSettingsGetRequest.JSON_PROPERTY_PUSH_ENABLED }) @JsonTypeName("_v3_applications_push_settings_get_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3ApplicationsPushSettingsGetRequest { public static final String JSON_PROPERTY_PUSH_ENABLED = "push_enabled"; private Boolean pushEnabled; @@ -52,7 +52,7 @@ public V3ApplicationsPushSettingsGetRequest pushEnabled(Boolean pushEnabled) { * Determines whether to turn on the push notifications feature for an application. * @return pushEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to turn on the push notifications feature for an application.") @JsonProperty(JSON_PROPERTY_PUSH_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest.java b/src/main/java/org/openapitools/client/model/V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest.java index 2cecb139..c8197d58 100644 --- a/src/main/java/org/openapitools/client/model/V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest.java +++ b/src/main/java/org/openapitools/client/model/V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest.java @@ -56,7 +56,7 @@ V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest.JSON_PROPERTY_VOLUME }) @JsonTypeName("_v3_group_channels__channel_url__scheduled_messages__scheduled_message_id__delete_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest { public static final String JSON_PROPERTY_MESSAGE_TYPE = "message_type"; private String messageType; @@ -127,7 +127,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the type of the message. The value of MESG represents a text message. * @return messageType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the message. The value of MESG represents a text message.") @JsonProperty(JSON_PROPERTY_MESSAGE_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,7 +153,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the user ID of the sender. * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the user ID of the sender.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -179,7 +179,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the content of the message. * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the content of the message.") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -205,7 +205,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Depending on the file upload method, this specifies the data of the file to upload to the Sendbird server either in raw binary format or by the file's location. When sending a request containing a file, you must change the value of the content-type header to multipart/form-data; boundary={your_unique_boundary_string} in the request. The code examples of HTTP multipart request and cURL are provided below the tables for your reference. If this file property is specified, the url property is not required. This doesn't allow a converted base64-encoded string from a file as its value. * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Depending on the file upload method, this specifies the data of the file to upload to the Sendbird server either in raw binary format or by the file's location. When sending a request containing a file, you must change the value of the content-type header to multipart/form-data; boundary={your_unique_boundary_string} in the request. The code examples of HTTP multipart request and cURL are provided below the tables for your reference. If this file property is specified, the url property is not required. This doesn't allow a converted base64-encoded string from a file as its value.") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -231,7 +231,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the URL of the file hosted on the server of your own or other third-party companies. If this url property is specified, the file property is not required. * @return url **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the file hosted on the server of your own or other third-party companies. If this url property is specified, the file property is not required.") @JsonProperty(JSON_PROPERTY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -257,7 +257,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * The specified time that indicates when to send the message, in Unix milliseconds format. Since messages are scheduled in minutes, values less than seconds are discarded. The specified time can be between 5 minutes and 43,200 minutes (30 days) from the current time. * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "The specified time that indicates when to send the message, in Unix milliseconds format. Since messages are scheduled in minutes, values less than seconds are discarded. The specified time can be between 5 minutes and 43,200 minutes (30 days) from the current time.") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -283,7 +283,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies a custom message type used for message grouping. The length is limited to 128 characters. * Custom types are also used to segment metrics within Sendbird's Advanced analytics, which enables the sub-classification of data views. * @return customType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a custom message type used for message grouping. The length is limited to 128 characters. * Custom types are also used to segment metrics within Sendbird's Advanced analytics, which enables the sub-classification of data views.") @JsonProperty(JSON_PROPERTY_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -309,7 +309,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies additional message information such as custom font size, font type, or JSON formatted string. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies additional message information such as custom font size, font type, or JSON formatted string.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -335,7 +335,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Determines whether to send a push notification of the message to the channel members. This property only applies to group channels. (Default is true) * @return sendPush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to send a push notification of the message to the channel members. This property only applies to group channels. (Default is true)") @JsonProperty(JSON_PROPERTY_SEND_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -361,7 +361,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the mentioning method that indicates which user receives a notification of the message. Acceptable values are users and channels. If set to users, only the users specified in the mentioned_user_ids property below are notified. If set to channels, all users in the channel are notified. (Default = users) * @return mentionType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the mentioning method that indicates which user receives a notification of the message. Acceptable values are users and channels. If set to users, only the users specified in the mentioned_user_ids property below are notified. If set to channels, all users in the channel are notified. (Default = users)") @JsonProperty(JSON_PROPERTY_MENTION_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -395,7 +395,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies an array of one or more IDs of the users who will receive a notification of the message. * @return mentionedUserIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more IDs of the users who will receive a notification of the message.") @JsonProperty(JSON_PROPERTY_MENTIONED_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -421,7 +421,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Determines whether to send a message without updating some of the following channel properties. If set to true, the channel's last_message is updated only for the sender while its unread_message_count remains unchanged for all channel members. Also, a push notification isn't sent to the users receiving the message. If the message is sent to a hidden channel, the channel remains hidden. (Default is false) * @return isSilent **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to send a message without updating some of the following channel properties. If set to true, the channel's last_message is updated only for the sender while its unread_message_count remains unchanged for all channel members. Also, a push notification isn't sent to the users receiving the message. If the message is sent to a hidden channel, the channel remains hidden. (Default is false)") @JsonProperty(JSON_PROPERTY_IS_SILENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -447,7 +447,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Determines whether to mark the message as read for the sender. If set to false, then the sender's unread_count and read_receipt remain unchanged after the message is sent. (Default is true) * @return markAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to mark the message as read for the sender. If set to false, then the sender's unread_count and read_receipt remain unchanged after the message is sent. (Default is true)") @JsonProperty(JSON_PROPERTY_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -481,7 +481,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies an array of one or more JSON objects consisting of key-values items that store additional message information. Items are saved and returned in the exact order they've been specified. * @return sortedMetaarray **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of one or more JSON objects consisting of key-values items that store additional message information. Items are saved and returned in the exact order they've been specified.") @JsonProperty(JSON_PROPERTY_SORTED_METAARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -507,7 +507,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies a unique ID for the message created by another system. In general, this property is used to prevent the same message data from getting inserted when migrating messages from another system to the Sendbird server. If specified, the server performs a duplicate check using the property value. * @return dedupId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a unique ID for the message created by another system. In general, this property is used to prevent the same message data from getting inserted when migrating messages from another system to the Sendbird server. If specified, the server performs a duplicate check using the property value.") @JsonProperty(JSON_PROPERTY_DEDUP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -533,7 +533,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the bundle ID of the client app in order to send a push notification to iOS devices. You can find this in Settings > Chat > Notifications > Push notification services on Sendbird Dashboard. * @return apnsBundleId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the bundle ID of the client app in order to send a push notification to iOS devices. You can find this in Settings > Chat > Notifications > Push notification services on Sendbird Dashboard.") @JsonProperty(JSON_PROPERTY_APNS_BUNDLE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -559,7 +559,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies options that support Apple's critical alerts and checks whether the message is a critical alert. * @return appleCriticalAlertOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies options that support Apple's critical alerts and checks whether the message is a critical alert.") @JsonProperty(JSON_PROPERTY_APPLE_CRITICAL_ALERT_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -585,7 +585,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the name of a sound file that is used for critical alerts. * @return sound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the name of a sound file that is used for critical alerts.") @JsonProperty(JSON_PROPERTY_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -611,7 +611,7 @@ public V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest * Specifies the volume of the critical alert sound. The volume ranges from 0.0to 1.0, which indicates silent and full volume, respectively. (Default = 1.0) * @return volume **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the volume of the critical alert sound. The volume ranges from 0.0to 1.0, which indicates silent and full volume, respectively. (Default = 1.0)") @JsonProperty(JSON_PROPERTY_VOLUME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsGetRequest.java b/src/main/java/org/openapitools/client/model/V3PollsGetRequest.java index 82081a0d..0d9a1fa1 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsGetRequest.java +++ b/src/main/java/org/openapitools/client/model/V3PollsGetRequest.java @@ -43,7 +43,7 @@ V3PollsGetRequest.JSON_PROPERTY_DATA }) @JsonTypeName("_v3_polls_get_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsGetRequest { public static final String JSON_PROPERTY_TITLE = "title"; private String title; @@ -78,7 +78,7 @@ public V3PollsGetRequest title(String title) { * Specifies the title of a poll. The length is limited to 2,048 characters. * @return title **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the title of a poll. The length is limited to 2,048 characters.") @JsonProperty(JSON_PROPERTY_TITLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public V3PollsGetRequest addOptionsItem(String optionsItem) { * Specifies an array of poll options that a user can vote for. At least one option should be provided, and the length of each option is limited to 2,000 characters. * @return options **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies an array of poll options that a user can vote for. At least one option should be provided, and the length of each option is limited to 2,000 characters.") @JsonProperty(JSON_PROPERTY_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,7 +138,7 @@ public V3PollsGetRequest allowUserSuggestion(Boolean allowUserSuggestion) { * Determines whether to allow users other than the creator of the poll to add new options to the poll. (Default is false) * @return allowUserSuggestion **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow users other than the creator of the poll to add new options to the poll. (Default is false)") @JsonProperty(JSON_PROPERTY_ALLOW_USER_SUGGESTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -164,7 +164,7 @@ public V3PollsGetRequest allowMultipleVotes(Boolean allowMultipleVotes) { * Determines whether to allow users to vote for multiple options. (Default is false) * @return allowMultipleVotes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow users to vote for multiple options. (Default is false)") @JsonProperty(JSON_PROPERTY_ALLOW_MULTIPLE_VOTES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,7 +190,7 @@ public V3PollsGetRequest closeAt(Long closeAt) { * Specifies when the poll closes and no longer accepts votes in Unix seconds. If the value of this property is -1, the poll is open indefinitely. * @return closeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies when the poll closes and no longer accepts votes in Unix seconds. If the value of this property is -1, the poll is open indefinitely.") @JsonProperty(JSON_PROPERTY_CLOSE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -216,7 +216,7 @@ public V3PollsGetRequest createdBy(String createdBy) { * Specifies the unique ID of the user who creates the poll. * @return createdBy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who creates the poll.") @JsonProperty(JSON_PROPERTY_CREATED_BY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -242,7 +242,7 @@ public V3PollsGetRequest data(Object data) { * Specifies a JSON object of one or more key-value items to store additional poll information. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a JSON object of one or more key-value items to store additional poll information.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest.java index 5b6d8c5c..456693ee 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest.java @@ -37,7 +37,7 @@ V3PollsPollIdDeleteRequest.JSON_PROPERTY_SHOW_PARTIAL_VOTER_LIST }) @JsonTypeName("_v3_polls__poll_id__delete_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdDeleteRequest { public static final String JSON_PROPERTY_CHANNEL_URL = "channel_url"; private String channelUrl; @@ -60,7 +60,7 @@ public V3PollsPollIdDeleteRequest channelUrl(String channelUrl) { * Specifies the URL of the channel. If channel_type is specified, channel_url must be specified as well. * @return channelUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the URL of the channel. If channel_type is specified, channel_url must be specified as well.") @JsonProperty(JSON_PROPERTY_CHANNEL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,7 +86,7 @@ public V3PollsPollIdDeleteRequest channelType(String channelType) { * Specifies the type of the channel. Either open_channels or group_channels. * @return channelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the type of the channel. Either open_channels or group_channels.") @JsonProperty(JSON_PROPERTY_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -112,7 +112,7 @@ public V3PollsPollIdDeleteRequest showPartialVoterList(Boolean showPartialVoterL * Determines whether to show a partial list of voters for each option. If set to true, the option resources inside the response include the partial_voter_list property which shows up to ten voters. * @return showPartialVoterList **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to show a partial list of voters for each option. If set to true, the option resources inside the response include the partial_voter_list property which shows up to ten voters.") @JsonProperty(JSON_PROPERTY_SHOW_PARTIAL_VOTER_LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest1.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest1.java index e6fdb815..a4cf175d 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest1.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdDeleteRequest1.java @@ -40,7 +40,7 @@ V3PollsPollIdDeleteRequest1.JSON_PROPERTY_DATA }) @JsonTypeName("_v3_polls__poll_id__delete_request_1") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdDeleteRequest1 { public static final String JSON_PROPERTY_TITLE = "title"; private String title; @@ -72,7 +72,7 @@ public V3PollsPollIdDeleteRequest1 title(String title) { * Specifies the title of a poll. The length is limited to 2,000 characters. * @return title **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the title of a poll. The length is limited to 2,000 characters.") @JsonProperty(JSON_PROPERTY_TITLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,7 +98,7 @@ public V3PollsPollIdDeleteRequest1 allowUserSuggestion(Boolean allowUserSuggesti * Determines whether to allow users other than the creator of the poll to add new options to the poll. (Default is false) * @return allowUserSuggestion **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow users other than the creator of the poll to add new options to the poll. (Default is false)") @JsonProperty(JSON_PROPERTY_ALLOW_USER_SUGGESTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public V3PollsPollIdDeleteRequest1 allowMultipleVotes(Boolean allowMultipleVotes * Determines whether to allow users to vote for multiple options. (Default is false) * @return allowMultipleVotes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Determines whether to allow users to vote for multiple options. (Default is false)") @JsonProperty(JSON_PROPERTY_ALLOW_MULTIPLE_VOTES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,7 +150,7 @@ public V3PollsPollIdDeleteRequest1 closeAt(Long closeAt) { * Specifies when the poll closes and no longer accepts votes in Unix seconds. If the value of this property is -1, the poll is open indefinitely. * @return closeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies when the poll closes and no longer accepts votes in Unix seconds. If the value of this property is -1, the poll is open indefinitely.") @JsonProperty(JSON_PROPERTY_CLOSE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,7 +176,7 @@ public V3PollsPollIdDeleteRequest1 allocreatedBywMultipleVotes(String allocreate * Specifies the unique ID of the user who creates the poll. * @return allocreatedBywMultipleVotes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who creates the poll.") @JsonProperty(JSON_PROPERTY_ALLOCREATED_BYW_MULTIPLE_VOTES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,7 +202,7 @@ public V3PollsPollIdDeleteRequest1 data(Object data) { * Specifies a JSON object of one or more key-value items to store additional poll information. * @return data **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies a JSON object of one or more key-value items to store additional poll information.") @JsonProperty(JSON_PROPERTY_DATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdDeleteRequest.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdDeleteRequest.java index f8037972..9e5d496c 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdDeleteRequest.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdDeleteRequest.java @@ -36,7 +36,7 @@ V3PollsPollIdOptionsOptionIdDeleteRequest.JSON_PROPERTY_CREATED_BY }) @JsonTypeName("_v3_polls__poll_id__options__option_id__delete_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdOptionsOptionIdDeleteRequest { public static final String JSON_PROPERTY_TEXT = "text"; private String text; @@ -56,7 +56,7 @@ public V3PollsPollIdOptionsOptionIdDeleteRequest text(String text) { * Specifies the description of a new option. The maximum length is 2,000 characters. * @return text **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the description of a new option. The maximum length is 2,000 characters.") @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,7 +82,7 @@ public V3PollsPollIdOptionsOptionIdDeleteRequest createdBy(String createdBy) { * Specifies the unique ID of the user who creates the option. * @return createdBy **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of the user who creates the option.") @JsonProperty(JSON_PROPERTY_CREATED_BY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200Response.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200Response.java index 9088b890..c32fe91f 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200Response.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200Response.java @@ -40,7 +40,7 @@ V3PollsPollIdOptionsOptionIdVotersGet200Response.JSON_PROPERTY_NEXT }) @JsonTypeName("_v3_polls__poll_id__options__option_id__voters_get_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdOptionsOptionIdVotersGet200Response { public static final String JSON_PROPERTY_VOTE_COUNT = "vote_count"; private Integer voteCount; @@ -63,7 +63,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200Response voteCount(Integer voteCo * Get voteCount * @return voteCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOTE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,7 +97,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200Response addVotersItem(V3PollsPol * Get voters * @return voters **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_VOTERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,7 +123,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200Response next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner.java index cd5fba15..6acf981d 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner.java @@ -38,7 +38,7 @@ V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner.JSON_PROPERTY_USER_ID }) @JsonTypeName("_v3_polls__poll_id__options__option_id__voters_get_200_response_voters_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner { public static final String JSON_PROPERTY_NICKNAME = "nickname"; private String nickname; @@ -64,7 +64,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner nickname(Stri * Get nickname * @return nickname **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NICKNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,7 +90,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner metadata(Obje * Get metadata * @return metadata **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_METADATA) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner profileUrl(St * Get profileUrl * @return profileUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PROFILE_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,7 +142,7 @@ public V3PollsPollIdOptionsOptionIdVotersGet200ResponseVotersInner userId(String * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGetRequest.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGetRequest.java index 679a48dd..4fbc9804 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGetRequest.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdOptionsOptionIdVotersGetRequest.java @@ -36,7 +36,7 @@ V3PollsPollIdOptionsOptionIdVotersGetRequest.JSON_PROPERTY_LIMIT }) @JsonTypeName("_v3_polls__poll_id__options__option_id__voters_get_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdOptionsOptionIdVotersGetRequest { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -56,7 +56,7 @@ public V3PollsPollIdOptionsOptionIdVotersGetRequest token(String token) { * Specifies the token to get the next page of voters. You can get this value from the next property of the previous API response. * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the token to get the next page of voters. You can get this value from the next property of the previous API response.") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,7 +82,7 @@ public V3PollsPollIdOptionsOptionIdVotersGetRequest limit(Integer limit) { * Specifies the number of voters to return per page. Acceptable values are 1 to 100, inclusive. (Default is 100) * @return limit **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the number of voters to return per page. Acceptable values are 1 to 100, inclusive. (Default is 100)") @JsonProperty(JSON_PROPERTY_LIMIT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3PollsPollIdVotePutRequest.java b/src/main/java/org/openapitools/client/model/V3PollsPollIdVotePutRequest.java index be20b933..2183a032 100644 --- a/src/main/java/org/openapitools/client/model/V3PollsPollIdVotePutRequest.java +++ b/src/main/java/org/openapitools/client/model/V3PollsPollIdVotePutRequest.java @@ -38,7 +38,7 @@ V3PollsPollIdVotePutRequest.JSON_PROPERTY_OPTION_IDS }) @JsonTypeName("_v3_polls__poll_id__vote_put_request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3PollsPollIdVotePutRequest { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -58,7 +58,7 @@ public V3PollsPollIdVotePutRequest userId(String userId) { * Specifies the unique ID of a user who casts or cancels a vote. * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the unique ID of a user who casts or cancels a vote.") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,7 +92,7 @@ public V3PollsPollIdVotePutRequest addOptionIdsItem(Integer optionIdsItem) { * Specifies the array of option IDs to cast or cancel votes. For example, if a user had voted for both Option 1 and Option 2 in a poll, you can specify this property's value as [1,2]. If the user wants to cancel the vote for Option 2 but keep the vote for Option 1, the value should be specified as [1]. If the user wants to cancel the votes for both poll options, the value should be specified as []. * @return optionIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "Specifies the array of option IDs to cast or cancel votes. For example, if a user had voted for both Option 1 and Option 2 in a poll, you can specify this property's value as [1,2]. If the user wants to cancel the vote for Option 2 but keep the vote for Option 1, the value should be specified as [1]. If the user wants to cancel the votes for both poll options, the value should be specified as [].") @JsonProperty(JSON_PROPERTY_OPTION_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3ScheduledMessagesCountGet200Response.java b/src/main/java/org/openapitools/client/model/V3ScheduledMessagesCountGet200Response.java index 025e5b4d..c4fea92b 100644 --- a/src/main/java/org/openapitools/client/model/V3ScheduledMessagesCountGet200Response.java +++ b/src/main/java/org/openapitools/client/model/V3ScheduledMessagesCountGet200Response.java @@ -36,7 +36,7 @@ V3ScheduledMessagesCountGet200Response.JSON_PROPERTY_COUNT }) @JsonTypeName("_v3_scheduled_messages_count_get_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3ScheduledMessagesCountGet200Response { public static final String JSON_PROPERTY_COUNT = "count"; private BigDecimal count; @@ -53,7 +53,7 @@ public V3ScheduledMessagesCountGet200Response count(BigDecimal count) { * Get count * @return count **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/V3ScheduledMessagesGet200Response.java b/src/main/java/org/openapitools/client/model/V3ScheduledMessagesGet200Response.java index 7f24d976..95847cf8 100644 --- a/src/main/java/org/openapitools/client/model/V3ScheduledMessagesGet200Response.java +++ b/src/main/java/org/openapitools/client/model/V3ScheduledMessagesGet200Response.java @@ -39,7 +39,7 @@ V3ScheduledMessagesGet200Response.JSON_PROPERTY_NEXT }) @JsonTypeName("_v3_scheduled_messages_get_200_response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class V3ScheduledMessagesGet200Response { public static final String JSON_PROPERTY_SCHEDULED_MESSAGES = "scheduled_messages"; private List scheduledMessages = null; @@ -67,7 +67,7 @@ public V3ScheduledMessagesGet200Response addScheduledMessagesItem(SendBirdSchedu * Get scheduledMessages * @return scheduledMessages **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_MESSAGES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,7 +93,7 @@ public V3ScheduledMessagesGet200Response next(String next) { * Get next * @return next **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewAnnouncementByIdResponse.java b/src/main/java/org/openapitools/client/model/ViewAnnouncementByIdResponse.java index 8d903e82..f05d14ef 100644 --- a/src/main/java/org/openapitools/client/model/ViewAnnouncementByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewAnnouncementByIdResponse.java @@ -59,7 +59,7 @@ ViewAnnouncementByIdResponse.JSON_PROPERTY_TARGET_CUSTOM_TYPE }) @JsonTypeName("viewAnnouncementByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewAnnouncementByIdResponse { public static final String JSON_PROPERTY_UNIQUE_ID = "unique_id"; private String uniqueId; @@ -139,7 +139,7 @@ public ViewAnnouncementByIdResponse uniqueId(String uniqueId) { * Get uniqueId * @return uniqueId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNIQUE_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,7 +165,7 @@ public ViewAnnouncementByIdResponse announcementGroup(String announcementGroup) * Get announcementGroup * @return announcementGroup **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANNOUNCEMENT_GROUP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,7 +191,7 @@ public ViewAnnouncementByIdResponse message(ScheduleAnnouncementResponseMessage * Get message * @return message **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -217,7 +217,7 @@ public ViewAnnouncementByIdResponse enablePush(Boolean enablePush) { * Get enablePush * @return enablePush **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -243,7 +243,7 @@ public ViewAnnouncementByIdResponse targetAt(String targetAt) { * Get targetAt * @return targetAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -269,7 +269,7 @@ public ViewAnnouncementByIdResponse targetUserCount(BigDecimal targetUserCount) * Get targetUserCount * @return targetUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -295,7 +295,7 @@ public ViewAnnouncementByIdResponse targetChannelCount(BigDecimal targetChannelC * Get targetChannelCount * @return targetChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -321,7 +321,7 @@ public ViewAnnouncementByIdResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -347,7 +347,7 @@ public ViewAnnouncementByIdResponse scheduledAt(BigDecimal scheduledAt) { * Get scheduledAt * @return scheduledAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SCHEDULED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -373,7 +373,7 @@ public ViewAnnouncementByIdResponse ceaseAt(String ceaseAt) { * Get ceaseAt * @return ceaseAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CEASE_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -399,7 +399,7 @@ public ViewAnnouncementByIdResponse resumeAt(String resumeAt) { * Get resumeAt * @return resumeAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_RESUME_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -425,7 +425,7 @@ public ViewAnnouncementByIdResponse completedAt(BigDecimal completedAt) { * Get completedAt * @return completedAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -451,7 +451,7 @@ public ViewAnnouncementByIdResponse sentUserCount(BigDecimal sentUserCount) { * Get sentUserCount * @return sentUserCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_USER_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -477,7 +477,7 @@ public ViewAnnouncementByIdResponse openCount(BigDecimal openCount) { * Get openCount * @return openCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -503,7 +503,7 @@ public ViewAnnouncementByIdResponse openRate(BigDecimal openRate) { * Get openRate * @return openRate **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_OPEN_RATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -529,7 +529,7 @@ public ViewAnnouncementByIdResponse createChannel(Boolean createChannel) { * Get createChannel * @return createChannel **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -555,7 +555,7 @@ public ViewAnnouncementByIdResponse createChannelOptions(ScheduleAnnouncementRes * Get createChannelOptions * @return createChannelOptions **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATE_CHANNEL_OPTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -581,7 +581,7 @@ public ViewAnnouncementByIdResponse endAt(BigDecimal endAt) { * Get endAt * @return endAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -607,7 +607,7 @@ public ViewAnnouncementByIdResponse markAsRead(Boolean markAsRead) { * Get markAsRead * @return markAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -633,7 +633,7 @@ public ViewAnnouncementByIdResponse sentChannelCount(BigDecimal sentChannelCount * Get sentChannelCount * @return sentChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENT_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -659,7 +659,7 @@ public ViewAnnouncementByIdResponse targetChannelType(String targetChannelType) * Get targetChannelType * @return targetChannelType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CHANNEL_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -685,7 +685,7 @@ public ViewAnnouncementByIdResponse targetCustomType(String targetCustomType) { * Get targetCustomType * @return targetCustomType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TARGET_CUSTOM_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewBotByIdResponse.java b/src/main/java/org/openapitools/client/model/ViewBotByIdResponse.java index eb245495..80562afb 100644 --- a/src/main/java/org/openapitools/client/model/ViewBotByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewBotByIdResponse.java @@ -42,7 +42,7 @@ ViewBotByIdResponse.JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE }) @JsonTypeName("viewBotByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewBotByIdResponse { public static final String JSON_PROPERTY_BOT = "bot"; private CreateBotResponseBot bot; @@ -74,7 +74,7 @@ public ViewBotByIdResponse bot(CreateBotResponseBot bot) { * Get bot * @return bot **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,7 +100,7 @@ public ViewBotByIdResponse botCallbackUrl(String botCallbackUrl) { * Get botCallbackUrl * @return botCallbackUrl **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BOT_CALLBACK_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public ViewBotByIdResponse enableMarkAsRead(Boolean enableMarkAsRead) { * Get enableMarkAsRead * @return enableMarkAsRead **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_MARK_AS_READ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public ViewBotByIdResponse isPrivacyMode(Boolean isPrivacyMode) { * Get isPrivacyMode * @return isPrivacyMode **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_IS_PRIVACY_MODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public ViewBotByIdResponse showMember(Boolean showMember) { * Get showMember * @return showMember **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHOW_MEMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public ViewBotByIdResponse channelInvitationPreference(BigDecimal channelInvitat * Get channelInvitationPreference * @return channelInvitationPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_INVITATION_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewChannelInvitationPreferenceResponse.java b/src/main/java/org/openapitools/client/model/ViewChannelInvitationPreferenceResponse.java index ff0dbe4f..4f9c6dee 100644 --- a/src/main/java/org/openapitools/client/model/ViewChannelInvitationPreferenceResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewChannelInvitationPreferenceResponse.java @@ -35,7 +35,7 @@ ViewChannelInvitationPreferenceResponse.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("viewChannelInvitationPreferenceResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewChannelInvitationPreferenceResponse { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public ViewChannelInvitationPreferenceResponse autoAccept(Boolean autoAccept) { * Get autoAccept * @return autoAccept **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewCountPreferenceOfChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/ViewCountPreferenceOfChannelByUrlResponse.java index 67da6ce8..be8d9bfe 100644 --- a/src/main/java/org/openapitools/client/model/ViewCountPreferenceOfChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewCountPreferenceOfChannelByUrlResponse.java @@ -35,7 +35,7 @@ ViewCountPreferenceOfChannelByUrlResponse.JSON_PROPERTY_COUNT_PREFERENCE }) @JsonTypeName("viewCountPreferenceOfChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewCountPreferenceOfChannelByUrlResponse { public static final String JSON_PROPERTY_COUNT_PREFERENCE = "count_preference"; private String countPreference; @@ -52,7 +52,7 @@ public ViewCountPreferenceOfChannelByUrlResponse countPreference(String countPre * Get countPreference * @return countPreference **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COUNT_PREFERENCE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewDataExportByIdResponse.java b/src/main/java/org/openapitools/client/model/ViewDataExportByIdResponse.java index 60065b72..bb2f47c8 100644 --- a/src/main/java/org/openapitools/client/model/ViewDataExportByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewDataExportByIdResponse.java @@ -52,7 +52,7 @@ ViewDataExportByIdResponse.JSON_PROPERTY_USER_IDS }) @JsonTypeName("viewDataExportByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewDataExportByIdResponse { public static final String JSON_PROPERTY_REQUEST_ID = "request_id"; private String requestId; @@ -108,7 +108,7 @@ public ViewDataExportByIdResponse requestId(String requestId) { * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,7 +134,7 @@ public ViewDataExportByIdResponse dataType(String dataType) { * Get dataType * @return dataType **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATA_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,7 +160,7 @@ public ViewDataExportByIdResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -186,7 +186,7 @@ public ViewDataExportByIdResponse format(String format) { * Get format * @return format **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FORMAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -212,7 +212,7 @@ public ViewDataExportByIdResponse csvDelimiter(String csvDelimiter) { * Get csvDelimiter * @return csvDelimiter **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CSV_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -238,7 +238,7 @@ public ViewDataExportByIdResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -264,7 +264,7 @@ public ViewDataExportByIdResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -290,7 +290,7 @@ public ViewDataExportByIdResponse startTs(BigDecimal startTs) { * Get startTs * @return startTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -316,7 +316,7 @@ public ViewDataExportByIdResponse endTs(BigDecimal endTs) { * Get endTs * @return endTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public ViewDataExportByIdResponse addChannelUrlsItem(String channelUrlsItem) { * Get channelUrls * @return channelUrls **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -384,7 +384,7 @@ public ViewDataExportByIdResponse addChannelCustomTypesItem(String channelCustom * Get channelCustomTypes * @return channelCustomTypes **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_CUSTOM_TYPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -418,7 +418,7 @@ public ViewDataExportByIdResponse addSenderIdsItem(String senderIdsItem) { * Get senderIds * @return senderIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SENDER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -444,7 +444,7 @@ public ViewDataExportByIdResponse _file(ListDataExportsByMessageChannelOrUserRes * Get _file * @return _file **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -478,7 +478,7 @@ public ViewDataExportByIdResponse addUserIdsItem(String userIdsItem) { * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewDefaultChannelInvitationPreferenceResponse.java b/src/main/java/org/openapitools/client/model/ViewDefaultChannelInvitationPreferenceResponse.java index 208b9726..ff5d95b3 100644 --- a/src/main/java/org/openapitools/client/model/ViewDefaultChannelInvitationPreferenceResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewDefaultChannelInvitationPreferenceResponse.java @@ -35,7 +35,7 @@ ViewDefaultChannelInvitationPreferenceResponse.JSON_PROPERTY_AUTO_ACCEPT }) @JsonTypeName("viewDefaultChannelInvitationPreferenceResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewDefaultChannelInvitationPreferenceResponse { public static final String JSON_PROPERTY_AUTO_ACCEPT = "auto_accept"; private Boolean autoAccept; @@ -52,7 +52,7 @@ public ViewDefaultChannelInvitationPreferenceResponse autoAccept(Boolean autoAcc * Get autoAccept * @return autoAccept **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_AUTO_ACCEPT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewGdprRequestByIdResponse.java b/src/main/java/org/openapitools/client/model/ViewGdprRequestByIdResponse.java index 847cf1a4..14a19c2c 100644 --- a/src/main/java/org/openapitools/client/model/ViewGdprRequestByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewGdprRequestByIdResponse.java @@ -46,7 +46,7 @@ ViewGdprRequestByIdResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("viewGdprRequestByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewGdprRequestByIdResponse { public static final String JSON_PROPERTY_REQUEST_ID = "request_id"; private String requestId; @@ -84,7 +84,7 @@ public ViewGdprRequestByIdResponse requestId(String requestId) { * Get requestId * @return requestId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_REQUEST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -110,7 +110,7 @@ public ViewGdprRequestByIdResponse action(String action) { * Get action * @return action **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,7 +136,7 @@ public ViewGdprRequestByIdResponse status(String status) { * Get status * @return status **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -162,7 +162,7 @@ public ViewGdprRequestByIdResponse userId(String userId) { * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,7 +188,7 @@ public ViewGdprRequestByIdResponse files(ListDataExportsByMessageChannelOrUserRe * Get files * @return files **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -222,7 +222,7 @@ public ViewGdprRequestByIdResponse addUserIdsItem(String userIdsItem) { * Get userIds * @return userIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,7 +248,7 @@ public ViewGdprRequestByIdResponse channelDeleteOption(String channelDeleteOptio * Get channelDeleteOption * @return channelDeleteOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CHANNEL_DELETE_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -274,7 +274,7 @@ public ViewGdprRequestByIdResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsByJoinStatusResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsByJoinStatusResponse.java index a833f352..b79459fe 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsByJoinStatusResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsByJoinStatusResponse.java @@ -36,7 +36,7 @@ ViewNumberOfChannelsByJoinStatusResponse.JSON_PROPERTY_GROUP_CHANNEL_COUNT }) @JsonTypeName("viewNumberOfChannelsByJoinStatusResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfChannelsByJoinStatusResponse { public static final String JSON_PROPERTY_GROUP_CHANNEL_COUNT = "group_channel_count"; private BigDecimal groupChannelCount; @@ -53,7 +53,7 @@ public ViewNumberOfChannelsByJoinStatusResponse groupChannelCount(BigDecimal gro * Get groupChannelCount * @return groupChannelCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_GROUP_CHANNEL_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsWithUnreadMessagesResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsWithUnreadMessagesResponse.java index 8747b61a..99fb15bb 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsWithUnreadMessagesResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfChannelsWithUnreadMessagesResponse.java @@ -36,7 +36,7 @@ ViewNumberOfChannelsWithUnreadMessagesResponse.JSON_PROPERTY_UNREAD_COUNT }) @JsonTypeName("viewNumberOfChannelsWithUnreadMessagesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfChannelsWithUnreadMessagesResponse { public static final String JSON_PROPERTY_UNREAD_COUNT = "unread_count"; private BigDecimal unreadCount; @@ -53,7 +53,7 @@ public ViewNumberOfChannelsWithUnreadMessagesResponse unreadCount(BigDecimal unr * Get unreadCount * @return unreadCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNREAD_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfConcurrentConnectionsResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfConcurrentConnectionsResponse.java index a9477176..7385dc0a 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfConcurrentConnectionsResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfConcurrentConnectionsResponse.java @@ -36,7 +36,7 @@ ViewNumberOfConcurrentConnectionsResponse.JSON_PROPERTY_CCU }) @JsonTypeName("viewNumberOfConcurrentConnectionsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfConcurrentConnectionsResponse { public static final String JSON_PROPERTY_CCU = "ccu"; private BigDecimal ccu; @@ -53,7 +53,7 @@ public ViewNumberOfConcurrentConnectionsResponse ccu(BigDecimal ccu) { * Get ccu * @return ccu **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CCU) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfDailyActiveUsersResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfDailyActiveUsersResponse.java index 782c03c7..b546656f 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfDailyActiveUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfDailyActiveUsersResponse.java @@ -36,7 +36,7 @@ ViewNumberOfDailyActiveUsersResponse.JSON_PROPERTY_DAU }) @JsonTypeName("viewNumberOfDailyActiveUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfDailyActiveUsersResponse { public static final String JSON_PROPERTY_DAU = "dau"; private BigDecimal dau; @@ -53,7 +53,7 @@ public ViewNumberOfDailyActiveUsersResponse dau(BigDecimal dau) { * Get dau * @return dau **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DAU) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfMonthlyActiveUsersResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfMonthlyActiveUsersResponse.java index 1fe276d8..3b4af64e 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfMonthlyActiveUsersResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfMonthlyActiveUsersResponse.java @@ -36,7 +36,7 @@ ViewNumberOfMonthlyActiveUsersResponse.JSON_PROPERTY_MAU }) @JsonTypeName("viewNumberOfMonthlyActiveUsersResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfMonthlyActiveUsersResponse { public static final String JSON_PROPERTY_MAU = "mau"; private BigDecimal mau; @@ -53,7 +53,7 @@ public ViewNumberOfMonthlyActiveUsersResponse mau(BigDecimal mau) { * Get mau * @return mau **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MAU) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponse.java index c66bff8e..31f83327 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponse.java @@ -38,7 +38,7 @@ ViewNumberOfPeakConnectionsResponse.JSON_PROPERTY_PEAK_CONNECTIONS }) @JsonTypeName("viewNumberOfPeakConnectionsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfPeakConnectionsResponse { public static final String JSON_PROPERTY_PEAK_CONNECTIONS = "peak_connections"; private List peakConnections = null; @@ -63,7 +63,7 @@ public ViewNumberOfPeakConnectionsResponse addPeakConnectionsItem(ViewNumberOfPe * Get peakConnections * @return peakConnections **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PEAK_CONNECTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponsePeakConnectionsInner.java b/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponsePeakConnectionsInner.java index 5373dea0..7a09b49b 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponsePeakConnectionsInner.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfPeakConnectionsResponsePeakConnectionsInner.java @@ -37,7 +37,7 @@ ViewNumberOfPeakConnectionsResponsePeakConnectionsInner.JSON_PROPERTY_PEAK_CONNECTIONS }) @JsonTypeName("viewNumberOfPeakConnectionsResponse_peak_connections_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfPeakConnectionsResponsePeakConnectionsInner { public static final String JSON_PROPERTY_DATE = "date"; private String date; @@ -57,7 +57,7 @@ public ViewNumberOfPeakConnectionsResponsePeakConnectionsInner date(String date) * Get date * @return date **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public ViewNumberOfPeakConnectionsResponsePeakConnectionsInner peakConnections(B * Get peakConnections * @return peakConnections **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PEAK_CONNECTIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadItemsResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadItemsResponse.java index ebab8010..67ce919b 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadItemsResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadItemsResponse.java @@ -44,7 +44,7 @@ ViewNumberOfUnreadItemsResponse.JSON_PROPERTY_NON_SUPER_GROUP_CHANNEL_INVITATION_COUNT }) @JsonTypeName("viewNumberOfUnreadItemsResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfUnreadItemsResponse { public static final String JSON_PROPERTY_NON_SUPER_GROUP_CHANNEL_UNREAD_MESSAGE_COUNT = "non_super_group_channel_unread_message_count"; private BigDecimal nonSuperGroupChannelUnreadMessageCount; @@ -85,7 +85,7 @@ public ViewNumberOfUnreadItemsResponse nonSuperGroupChannelUnreadMessageCount(Bi * Get nonSuperGroupChannelUnreadMessageCount * @return nonSuperGroupChannelUnreadMessageCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NON_SUPER_GROUP_CHANNEL_UNREAD_MESSAGE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -111,7 +111,7 @@ public ViewNumberOfUnreadItemsResponse superGroupChannelUnreadMessageCount(BigDe * Get superGroupChannelUnreadMessageCount * @return superGroupChannelUnreadMessageCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUPER_GROUP_CHANNEL_UNREAD_MESSAGE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -137,7 +137,7 @@ public ViewNumberOfUnreadItemsResponse groupChannelUnreadMessageCount(BigDecimal * Get groupChannelUnreadMessageCount * @return groupChannelUnreadMessageCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_GROUP_CHANNEL_UNREAD_MESSAGE_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,7 +163,7 @@ public ViewNumberOfUnreadItemsResponse superGroupChannelInvitationCount(BigDecim * Get superGroupChannelInvitationCount * @return superGroupChannelInvitationCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUPER_GROUP_CHANNEL_INVITATION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -189,7 +189,7 @@ public ViewNumberOfUnreadItemsResponse groupChannelInvitationCount(BigDecimal gr * Get groupChannelInvitationCount * @return groupChannelInvitationCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_GROUP_CHANNEL_INVITATION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -215,7 +215,7 @@ public ViewNumberOfUnreadItemsResponse superGroupChannelUnreadMentionCount(BigDe * Get superGroupChannelUnreadMentionCount * @return superGroupChannelUnreadMentionCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SUPER_GROUP_CHANNEL_UNREAD_MENTION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -241,7 +241,7 @@ public ViewNumberOfUnreadItemsResponse groupChannelUnreadMentionCount(BigDecimal * Get groupChannelUnreadMentionCount * @return groupChannelUnreadMentionCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_GROUP_CHANNEL_UNREAD_MENTION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -267,7 +267,7 @@ public ViewNumberOfUnreadItemsResponse nonSuperGroupChannelUnreadMentionCount(Bi * Get nonSuperGroupChannelUnreadMentionCount * @return nonSuperGroupChannelUnreadMentionCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NON_SUPER_GROUP_CHANNEL_UNREAD_MENTION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,7 +293,7 @@ public ViewNumberOfUnreadItemsResponse nonSuperGroupChannelInvitationCount(BigDe * Get nonSuperGroupChannelInvitationCount * @return nonSuperGroupChannelInvitationCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NON_SUPER_GROUP_CHANNEL_INVITATION_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadMessagesResponse.java b/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadMessagesResponse.java index d9dd0e04..fb007200 100644 --- a/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadMessagesResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewNumberOfUnreadMessagesResponse.java @@ -36,7 +36,7 @@ ViewNumberOfUnreadMessagesResponse.JSON_PROPERTY_UNREAD_COUNT }) @JsonTypeName("viewNumberOfUnreadMessagesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewNumberOfUnreadMessagesResponse { public static final String JSON_PROPERTY_UNREAD_COUNT = "unread_count"; private BigDecimal unreadCount; @@ -53,7 +53,7 @@ public ViewNumberOfUnreadMessagesResponse unreadCount(BigDecimal unreadCount) { * Get unreadCount * @return unreadCount **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_UNREAD_COUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewPushConfigurationByIdResponse.java b/src/main/java/org/openapitools/client/model/ViewPushConfigurationByIdResponse.java index e2940711..c655846f 100644 --- a/src/main/java/org/openapitools/client/model/ViewPushConfigurationByIdResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewPushConfigurationByIdResponse.java @@ -38,7 +38,7 @@ ViewPushConfigurationByIdResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS }) @JsonTypeName("viewPushConfigurationByIdResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewPushConfigurationByIdResponse { public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations"; private List pushConfigurations = null; @@ -63,7 +63,7 @@ public ViewPushConfigurationByIdResponse addPushConfigurationsItem(ListPushConfi * Get pushConfigurations * @return pushConfigurations **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_CONFIGURATIONS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponse.java b/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponse.java index f9e5a6b9..7f2148a3 100644 --- a/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponse.java @@ -38,7 +38,7 @@ ViewPushNotificationContentTemplateResponse.JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES }) @JsonTypeName("viewPushNotificationContentTemplateResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewPushNotificationContentTemplateResponse { public static final String JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES = "push_message_templates"; private List pushMessageTemplates = null; @@ -63,7 +63,7 @@ public ViewPushNotificationContentTemplateResponse addPushMessageTemplatesItem(V * Get pushMessageTemplates * @return pushMessageTemplates **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_MESSAGE_TEMPLATES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner.java b/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner.java index 658a0f25..7122212b 100644 --- a/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner.java +++ b/src/main/java/org/openapitools/client/model/ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner.java @@ -38,7 +38,7 @@ ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner.JSON_PROPERTY_PUSH_MESSAGE_PREVIEW }) @JsonTypeName("viewPushNotificationContentTemplateResponse_push_message_templates_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner { public static final String JSON_PROPERTY_TEMPLATE_NAME = "template_name"; private String templateName; @@ -61,7 +61,7 @@ public ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner temp * Get templateName * @return templateName **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TEMPLATE_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,7 +87,7 @@ public ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner temp * Get template * @return template **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TEMPLATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,7 +113,7 @@ public ViewPushNotificationContentTemplateResponsePushMessageTemplatesInner push * Get pushMessagePreview * @return pushMessagePreview **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_MESSAGE_PREVIEW) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewPushPreferencesForChannelByUrlResponse.java b/src/main/java/org/openapitools/client/model/ViewPushPreferencesForChannelByUrlResponse.java index be7929e1..23d0aa6a 100644 --- a/src/main/java/org/openapitools/client/model/ViewPushPreferencesForChannelByUrlResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewPushPreferencesForChannelByUrlResponse.java @@ -47,7 +47,7 @@ ViewPushPreferencesForChannelByUrlResponse.JSON_PROPERTY_ENABLE }) @JsonTypeName("viewPushPreferencesForChannelByUrlResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewPushPreferencesForChannelByUrlResponse { public static final String JSON_PROPERTY_PUSH_TRIGGER_OPTION = "push_trigger_option"; private String pushTriggerOption; @@ -97,7 +97,7 @@ public ViewPushPreferencesForChannelByUrlResponse pushTriggerOption(String pushT * Get pushTriggerOption * @return pushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,7 +123,7 @@ public ViewPushPreferencesForChannelByUrlResponse doNotDisturb(Boolean doNotDist * Get doNotDisturb * @return doNotDisturb **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -149,7 +149,7 @@ public ViewPushPreferencesForChannelByUrlResponse startHour(BigDecimal startHour * Get startHour * @return startHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -175,7 +175,7 @@ public ViewPushPreferencesForChannelByUrlResponse startMin(BigDecimal startMin) * Get startMin * @return startMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,7 +201,7 @@ public ViewPushPreferencesForChannelByUrlResponse endHour(BigDecimal endHour) { * Get endHour * @return endHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -227,7 +227,7 @@ public ViewPushPreferencesForChannelByUrlResponse endMin(BigDecimal endMin) { * Get endMin * @return endMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -253,7 +253,7 @@ public ViewPushPreferencesForChannelByUrlResponse snoozeEnabled(Boolean snoozeEn * Get snoozeEnabled * @return snoozeEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -279,7 +279,7 @@ public ViewPushPreferencesForChannelByUrlResponse snoozeStartTs(BigDecimal snooz * Get snoozeStartTs * @return snoozeStartTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,7 +305,7 @@ public ViewPushPreferencesForChannelByUrlResponse snoozeEndTs(BigDecimal snoozeE * Get snoozeEndTs * @return snoozeEndTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -331,7 +331,7 @@ public ViewPushPreferencesForChannelByUrlResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -357,7 +357,7 @@ public ViewPushPreferencesForChannelByUrlResponse pushSound(String pushSound) { * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -383,7 +383,7 @@ public ViewPushPreferencesForChannelByUrlResponse enable(Boolean enable) { * Get enable * @return enable **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewPushPreferencesResponse.java b/src/main/java/org/openapitools/client/model/ViewPushPreferencesResponse.java index 00edef22..a18dec4b 100644 --- a/src/main/java/org/openapitools/client/model/ViewPushPreferencesResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewPushPreferencesResponse.java @@ -51,7 +51,7 @@ ViewPushPreferencesResponse.JSON_PROPERTY_PUSH_TRIGGER_OPTION }) @JsonTypeName("viewPushPreferencesResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewPushPreferencesResponse { public static final String JSON_PROPERTY_SNOOZE_START_TS = "snooze_start_ts"; private String snoozeStartTs; @@ -107,7 +107,7 @@ public ViewPushPreferencesResponse snoozeStartTs(String snoozeStartTs) { * Get snoozeStartTs * @return snoozeStartTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_START_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,7 +133,7 @@ public ViewPushPreferencesResponse startHour(BigDecimal startHour) { * Get startHour * @return startHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,7 +159,7 @@ public ViewPushPreferencesResponse snoozeEnabled(Boolean snoozeEnabled) { * Get snoozeEnabled * @return snoozeEnabled **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_ENABLED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,7 +185,7 @@ public ViewPushPreferencesResponse endMin(BigDecimal endMin) { * Get endMin * @return endMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -211,7 +211,7 @@ public ViewPushPreferencesResponse timezone(String timezone) { * Get timezone * @return timezone **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TIMEZONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -237,7 +237,7 @@ public ViewPushPreferencesResponse blockPushFromBots(Boolean blockPushFromBots) * Get blockPushFromBots * @return blockPushFromBots **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_BLOCK_PUSH_FROM_BOTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,7 +271,7 @@ public ViewPushPreferencesResponse addPushBlockedBotIdsItem(String pushBlockedBo * Get pushBlockedBotIds * @return pushBlockedBotIds **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_BLOCKED_BOT_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,7 +297,7 @@ public ViewPushPreferencesResponse startMin(BigDecimal startMin) { * Get startMin * @return startMin **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_START_MIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -323,7 +323,7 @@ public ViewPushPreferencesResponse snoozeEndTs(String snoozeEndTs) { * Get snoozeEndTs * @return snoozeEndTs **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SNOOZE_END_TS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -349,7 +349,7 @@ public ViewPushPreferencesResponse doNotDisturb(Boolean doNotDisturb) { * Get doNotDisturb * @return doNotDisturb **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DO_NOT_DISTURB) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -375,7 +375,7 @@ public ViewPushPreferencesResponse endHour(BigDecimal endHour) { * Get endHour * @return endHour **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_END_HOUR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,7 +401,7 @@ public ViewPushPreferencesResponse enablePushForReplies(Boolean enablePushForRep * Get enablePushForReplies * @return enablePushForReplies **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ENABLE_PUSH_FOR_REPLIES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -427,7 +427,7 @@ public ViewPushPreferencesResponse pushSound(String pushSound) { * Get pushSound * @return pushSound **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_SOUND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,7 +453,7 @@ public ViewPushPreferencesResponse pushTriggerOption(String pushTriggerOption) { * Get pushTriggerOption * @return pushTriggerOption **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PUSH_TRIGGER_OPTION) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewSecondaryApiTokenByTokenResponse.java b/src/main/java/org/openapitools/client/model/ViewSecondaryApiTokenByTokenResponse.java index f388dc25..9d09ddc3 100644 --- a/src/main/java/org/openapitools/client/model/ViewSecondaryApiTokenByTokenResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewSecondaryApiTokenByTokenResponse.java @@ -37,7 +37,7 @@ ViewSecondaryApiTokenByTokenResponse.JSON_PROPERTY_CREATED_AT }) @JsonTypeName("viewSecondaryApiTokenByTokenResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewSecondaryApiTokenByTokenResponse { public static final String JSON_PROPERTY_TOKEN = "token"; private String token; @@ -57,7 +57,7 @@ public ViewSecondaryApiTokenByTokenResponse token(String token) { * Get token * @return token **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOKEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,7 +83,7 @@ public ViewSecondaryApiTokenByTokenResponse createdAt(BigDecimal createdAt) { * Get createdAt * @return createdAt **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CREATED_AT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewTotalNumberOfMessagesInChannelResponse.java b/src/main/java/org/openapitools/client/model/ViewTotalNumberOfMessagesInChannelResponse.java index 71a18ce2..d450f229 100644 --- a/src/main/java/org/openapitools/client/model/ViewTotalNumberOfMessagesInChannelResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewTotalNumberOfMessagesInChannelResponse.java @@ -36,7 +36,7 @@ ViewTotalNumberOfMessagesInChannelResponse.JSON_PROPERTY_TOTAL }) @JsonTypeName("viewTotalNumberOfMessagesInChannelResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewTotalNumberOfMessagesInChannelResponse { public static final String JSON_PROPERTY_TOTAL = "total"; private BigDecimal total; @@ -53,7 +53,7 @@ public ViewTotalNumberOfMessagesInChannelResponse total(BigDecimal total) { * Get total * @return total **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TOTAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewUserMetadataResponse.java b/src/main/java/org/openapitools/client/model/ViewUserMetadataResponse.java index 6df9db47..40701718 100644 --- a/src/main/java/org/openapitools/client/model/ViewUserMetadataResponse.java +++ b/src/main/java/org/openapitools/client/model/ViewUserMetadataResponse.java @@ -35,7 +35,7 @@ ViewUserMetadataResponse.JSON_PROPERTY_ANY_OF }) @JsonTypeName("viewUserMetadataResponse") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewUserMetadataResponse { public static final String JSON_PROPERTY_ANY_OF = "anyOf"; private String anyOf; @@ -52,7 +52,7 @@ public ViewUserMetadataResponse anyOf(String anyOf) { * Get anyOf * @return anyOf **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ANY_OF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/openapitools/client/model/ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner.java b/src/main/java/org/openapitools/client/model/ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner.java index f986a715..3ef6e124 100644 --- a/src/main/java/org/openapitools/client/model/ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner.java +++ b/src/main/java/org/openapitools/client/model/ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner.java @@ -35,7 +35,7 @@ ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner.JSON_PROPERTY_USER_ID }) @JsonTypeName("viewWhoOwnsRegistrationOrDeviceTokenByTokenResponse_inner") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner { public static final String JSON_PROPERTY_USER_ID = "user_id"; private String userId; @@ -52,7 +52,7 @@ public ViewWhoOwnsRegistrationOrDeviceTokenByTokenResponseInner userId(String us * Get userId * @return userId **/ - @javax.annotation.Nullable + @jakarta.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USER_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/main/java/org/sendbird/client/ApiClient.java b/src/main/java/org/sendbird/client/ApiClient.java index b3adffb5..d2870ed5 100644 --- a/src/main/java/org/sendbird/client/ApiClient.java +++ b/src/main/java/org/sendbird/client/ApiClient.java @@ -1,15 +1,15 @@ package org.sendbird.client; -import javax.ws.rs.client.Client; -import javax.ws.rs.client.ClientBuilder; -import javax.ws.rs.client.Entity; -import javax.ws.rs.client.Invocation; -import javax.ws.rs.client.WebTarget; -import javax.ws.rs.core.Form; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.MediaType; -import javax.ws.rs.core.Response; -import javax.ws.rs.core.Response.Status; +import jakarta.ws.rs.client.Client; +import jakarta.ws.rs.client.ClientBuilder; +import jakarta.ws.rs.client.Entity; +import jakarta.ws.rs.client.Invocation; +import jakarta.ws.rs.client.WebTarget; +import jakarta.ws.rs.core.Form; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.core.MediaType; +import jakarta.ws.rs.core.Response; +import jakarta.ws.rs.core.Response.Status; import org.glassfish.jersey.client.ClientConfig; import org.glassfish.jersey.client.ClientProperties; @@ -66,7 +66,7 @@ /** *

ApiClient class.

*/ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ApiClient extends JavaTimeFormatter { protected Map defaultHeaderMap = new HashMap(); protected Map defaultCookieMap = new HashMap(); @@ -127,7 +127,7 @@ public ApiClient(Map authMap) { this.dateFormat = new RFC3339DateFormat(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/1.0.20/java"); + setUserAgent("OpenAPI-Generator/1.1.0/java"); // Setup authentications (key: authentication name, value: authentication). authentications = new HashMap(); @@ -151,7 +151,7 @@ public JSON getJSON() { /** *

Getter for the field httpClient.

* - * @return a {@link javax.ws.rs.client.Client} object. + * @return a {@link jakarta.ws.rs.client.Client} object. */ public Client getHttpClient() { return httpClient; @@ -160,7 +160,7 @@ public Client getHttpClient() { /** *

Setter for the field httpClient.

* - * @param httpClient a {@link javax.ws.rs.client.Client} object. + * @param httpClient a {@link jakarta.ws.rs.client.Client} object. * @return a {@link org.openapitools.client.ApiClient} object. */ public ApiClient setHttpClient(Client httpClient) { @@ -885,7 +885,7 @@ public File downloadFileFromResponse(Response response) throws ApiException { /** *

Prepare the file for download from the response.

* - * @param response a {@link javax.ws.rs.core.Response} object. + * @param response a {@link jakarta.ws.rs.core.Response} object. * @return a {@link java.io.File} object. * @throws java.io.IOException if any. */ @@ -1151,7 +1151,7 @@ public ClientConfig getDefaultClientConfig() { * To completely disable certificate validation (at your own risk), you can * override this method and invoke disableCertificateValidation(clientBuilder). * - * @param clientBuilder a {@link javax.ws.rs.client.ClientBuilder} object. + * @param clientBuilder a {@link jakarta.ws.rs.client.ClientBuilder} object. */ protected void customizeClientBuilder(ClientBuilder clientBuilder) { // No-op extension point @@ -1163,7 +1163,7 @@ protected void customizeClientBuilder(ClientBuilder clientBuilder) { * Please note that trusting all certificates is extremely risky. * This may be useful in a development environment with self-signed certificates. * - * @param clientBuilder a {@link javax.ws.rs.client.ClientBuilder} object. + * @param clientBuilder a {@link jakarta.ws.rs.client.ClientBuilder} object. * @throws java.security.KeyManagementException if any. * @throws java.security.NoSuchAlgorithmException if any. */ @@ -1190,7 +1190,7 @@ public void checkServerTrusted(X509Certificate[] certs, String authType) { /** *

Build the response headers.

* - * @param response a {@link javax.ws.rs.core.Response} object. + * @param response a {@link jakarta.ws.rs.core.Response} object. * @return a {@link java.util.Map} of response headers. */ protected Map> buildResponseHeaders(Response response) { diff --git a/src/main/java/org/sendbird/client/ApiException.java b/src/main/java/org/sendbird/client/ApiException.java index af4dee25..52e4da72 100644 --- a/src/main/java/org/sendbird/client/ApiException.java +++ b/src/main/java/org/sendbird/client/ApiException.java @@ -19,7 +19,7 @@ /** * API Exception */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ApiException extends Exception { private int code = 0; private Map> responseHeaders = null; diff --git a/src/main/java/org/sendbird/client/Configuration.java b/src/main/java/org/sendbird/client/Configuration.java index 63216440..51063fe6 100644 --- a/src/main/java/org/sendbird/client/Configuration.java +++ b/src/main/java/org/sendbird/client/Configuration.java @@ -13,7 +13,7 @@ package org.sendbird.client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class Configuration { private static ApiClient defaultApiClient = new ApiClient(); diff --git a/src/main/java/org/sendbird/client/JSON.java b/src/main/java/org/sendbird/client/JSON.java index e7688630..6580ba6f 100644 --- a/src/main/java/org/sendbird/client/JSON.java +++ b/src/main/java/org/sendbird/client/JSON.java @@ -12,10 +12,10 @@ import java.util.HashSet; import java.util.Map; import java.util.Set; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.ext.ContextResolver; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.ext.ContextResolver; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class JSON implements ContextResolver { private ObjectMapper mapper; diff --git a/src/main/java/org/sendbird/client/JSON.java-e b/src/main/java/org/sendbird/client/JSON.java-e index 4d25f9ab..f0a3f9ff 100644 --- a/src/main/java/org/sendbird/client/JSON.java-e +++ b/src/main/java/org/sendbird/client/JSON.java-e @@ -12,10 +12,10 @@ import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.ext.ContextResolver; +import jakarta.ws.rs.core.GenericType; +import jakarta.ws.rs.ext.ContextResolver; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T14:44:31.188701+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T14:44:31.188701+09:00[Asia/Seoul]") public class JSON implements ContextResolver { private ObjectMapper mapper; diff --git a/src/main/java/org/sendbird/client/JavaTimeFormatter.java b/src/main/java/org/sendbird/client/JavaTimeFormatter.java index f3895bda..d9bccf58 100644 --- a/src/main/java/org/sendbird/client/JavaTimeFormatter.java +++ b/src/main/java/org/sendbird/client/JavaTimeFormatter.java @@ -20,7 +20,7 @@ * Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class. * It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class JavaTimeFormatter { private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME; diff --git a/src/main/java/org/sendbird/client/Pair.java b/src/main/java/org/sendbird/client/Pair.java index 68d41786..3be6647c 100644 --- a/src/main/java/org/sendbird/client/Pair.java +++ b/src/main/java/org/sendbird/client/Pair.java @@ -13,7 +13,7 @@ package org.sendbird.client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class Pair { private String name = ""; private String value = ""; diff --git a/src/main/java/org/sendbird/client/StringUtil.java b/src/main/java/org/sendbird/client/StringUtil.java index 3f076599..7e65f7f5 100644 --- a/src/main/java/org/sendbird/client/StringUtil.java +++ b/src/main/java/org/sendbird/client/StringUtil.java @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/main/java/org/sendbird/client/api/AnnouncementApi.java b/src/main/java/org/sendbird/client/api/AnnouncementApi.java index 47779e40..0ae0bcd5 100644 --- a/src/main/java/org/sendbird/client/api/AnnouncementApi.java +++ b/src/main/java/org/sendbird/client/api/AnnouncementApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.GetDetailedOpenRateOfAnnouncementGroupResponse; import org.openapitools.client.model.GetStatisticsDailyResponse; @@ -24,7 +24,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class AnnouncementApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/ApplicationApi.java b/src/main/java/org/sendbird/client/api/ApplicationApi.java index 4962b6cf..6e81568f 100644 --- a/src/main/java/org/sendbird/client/api/ApplicationApi.java +++ b/src/main/java/org/sendbird/client/api/ApplicationApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.AddApnsPushConfigurationData; import org.openapitools.client.model.AddApnsPushConfigurationResponse; @@ -54,7 +54,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ApplicationApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/BotApi.java b/src/main/java/org/sendbird/client/api/BotApi.java index db91441b..3a224619 100644 --- a/src/main/java/org/sendbird/client/api/BotApi.java +++ b/src/main/java/org/sendbird/client/api/BotApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.CreateBotData; import org.openapitools.client.model.CreateBotResponse; @@ -24,7 +24,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class BotApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/DataExportApi.java b/src/main/java/org/sendbird/client/api/DataExportApi.java index 08ff9c08..5a2fe9b6 100644 --- a/src/main/java/org/sendbird/client/api/DataExportApi.java +++ b/src/main/java/org/sendbird/client/api/DataExportApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.ListDataExportsByMessageChannelOrUserResponse; import org.openapitools.client.model.RegisterAndScheduleDataExportData; @@ -18,7 +18,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class DataExportApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/DeleteAPinApi.java b/src/main/java/org/sendbird/client/api/DeleteAPinApi.java index 528caa23..ca51229f 100644 --- a/src/main/java/org/sendbird/client/api/DeleteAPinApi.java +++ b/src/main/java/org/sendbird/client/api/DeleteAPinApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.SendBirdChannelResponse; @@ -15,7 +15,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class DeleteAPinApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/GroupChannelApi.java b/src/main/java/org/sendbird/client/api/GroupChannelApi.java index 4b70dcc6..6b0848dc 100644 --- a/src/main/java/org/sendbird/client/api/GroupChannelApi.java +++ b/src/main/java/org/sendbird/client/api/GroupChannelApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.GcAcceptInvitationData; import org.openapitools.client.model.GcCheckIfMemberByIdResponse; @@ -33,7 +33,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class GroupChannelApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/MessageApi.java b/src/main/java/org/sendbird/client/api/MessageApi.java index 8349664e..c9aaef66 100644 --- a/src/main/java/org/sendbird/client/api/MessageApi.java +++ b/src/main/java/org/sendbird/client/api/MessageApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.AddEmojiCategoriesResponse; import org.openapitools.client.model.AddEmojisData; @@ -46,7 +46,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class MessageApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/MetadataApi.java b/src/main/java/org/sendbird/client/api/MetadataApi.java index 5c869890..5d0654e7 100644 --- a/src/main/java/org/sendbird/client/api/MetadataApi.java +++ b/src/main/java/org/sendbird/client/api/MetadataApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.CreateChannelMetacounterData; import org.openapitools.client.model.CreateChannelMetadataData; @@ -24,7 +24,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class MetadataApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/ModerationApi.java b/src/main/java/org/sendbird/client/api/ModerationApi.java index 538855dc..9cfc2daf 100644 --- a/src/main/java/org/sendbird/client/api/ModerationApi.java +++ b/src/main/java/org/sendbird/client/api/ModerationApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.BanFromChannelsWithCustomChannelTypesData; import org.openapitools.client.model.BlockUserData; @@ -44,7 +44,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ModerationApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/OpenChannelApi.java b/src/main/java/org/sendbird/client/api/OpenChannelApi.java index 1d1b4f3e..bfd0ca9c 100644 --- a/src/main/java/org/sendbird/client/api/OpenChannelApi.java +++ b/src/main/java/org/sendbird/client/api/OpenChannelApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.OcCreateChannelData; import org.openapitools.client.model.OcDeleteChannelByUrl200Response; @@ -22,7 +22,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class OpenChannelApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/PinAMessageApi.java b/src/main/java/org/sendbird/client/api/PinAMessageApi.java index 3a11c26b..11a29ae6 100644 --- a/src/main/java/org/sendbird/client/api/PinAMessageApi.java +++ b/src/main/java/org/sendbird/client/api/PinAMessageApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.SendBirdChannelResponse; @@ -15,7 +15,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class PinAMessageApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/PollApi.java b/src/main/java/org/sendbird/client/api/PollApi.java index 85ddd533..b0ddcd57 100644 --- a/src/main/java/org/sendbird/client/api/PollApi.java +++ b/src/main/java/org/sendbird/client/api/PollApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.SendBirdPoll; import org.openapitools.client.model.SendBirdPollOption; @@ -23,7 +23,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class PollApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/PrivacyApi.java b/src/main/java/org/sendbird/client/api/PrivacyApi.java index 4910bc1c..24ac0fac 100644 --- a/src/main/java/org/sendbird/client/api/PrivacyApi.java +++ b/src/main/java/org/sendbird/client/api/PrivacyApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.ListGdprRequestsResponse; import org.openapitools.client.model.RegisterGdprRequestData; @@ -18,7 +18,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class PrivacyApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/PushNotificationsApi.java b/src/main/java/org/sendbird/client/api/PushNotificationsApi.java index 0e6a6aad..6d95587f 100644 --- a/src/main/java/org/sendbird/client/api/PushNotificationsApi.java +++ b/src/main/java/org/sendbird/client/api/PushNotificationsApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.ListPushConfigurationsResponse; import org.openapitools.client.model.V3ApplicationsPushSettingsGet200Response; @@ -17,7 +17,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class PushNotificationsApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/ReportApi.java b/src/main/java/org/sendbird/client/api/ReportApi.java index 1e13974b..e21ad6d8 100644 --- a/src/main/java/org/sendbird/client/api/ReportApi.java +++ b/src/main/java/org/sendbird/client/api/ReportApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.ListReportsOnChannelByUrlResponse; import org.openapitools.client.model.ListReportsOnMessageByIdResponse; @@ -24,7 +24,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ReportApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/ScheduledMessageApi.java b/src/main/java/org/sendbird/client/api/ScheduledMessageApi.java index 19746873..beeda266 100644 --- a/src/main/java/org/sendbird/client/api/ScheduledMessageApi.java +++ b/src/main/java/org/sendbird/client/api/ScheduledMessageApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.V3GroupChannelsChannelUrlScheduledMessagesScheduledMessageIdDeleteRequest; import org.openapitools.client.model.V3ScheduledMessagesCountGet200Response; @@ -17,7 +17,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ScheduledMessageApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/StatisticsApi.java b/src/main/java/org/sendbird/client/api/StatisticsApi.java index ae3306ab..cabcaa66 100644 --- a/src/main/java/org/sendbird/client/api/StatisticsApi.java +++ b/src/main/java/org/sendbird/client/api/StatisticsApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.GetDetailedOpenRateOfAnnouncementByIdResponse; import org.openapitools.client.model.GetDetailedOpenStatusOfAnnouncementByIdResponse; @@ -21,7 +21,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class StatisticsApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/UserApi.java b/src/main/java/org/sendbird/client/api/UserApi.java index 2dee5e04..5aa23c76 100644 --- a/src/main/java/org/sendbird/client/api/UserApi.java +++ b/src/main/java/org/sendbird/client/api/UserApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.AddRegistrationOrDeviceTokenData; import org.openapitools.client.model.AddRegistrationOrDeviceTokenResponse; @@ -49,7 +49,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class UserApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/api/WebhookApi.java b/src/main/java/org/sendbird/client/api/WebhookApi.java index ea360737..9f5030fb 100644 --- a/src/main/java/org/sendbird/client/api/WebhookApi.java +++ b/src/main/java/org/sendbird/client/api/WebhookApi.java @@ -6,7 +6,7 @@ import org.sendbird.client.Configuration; import org.sendbird.client.Pair; -import javax.ws.rs.core.GenericType; +import jakarta.ws.rs.core.GenericType; import org.openapitools.client.model.ChooseWhichEventsToSubscribeToData; import org.openapitools.client.model.ChooseWhichEventsToSubscribeToResponse; @@ -17,7 +17,7 @@ import java.util.List; import java.util.Map; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class WebhookApi { private ApiClient apiClient; diff --git a/src/main/java/org/sendbird/client/auth/ApiKeyAuth.java b/src/main/java/org/sendbird/client/auth/ApiKeyAuth.java index 75e98783..f733a2b3 100644 --- a/src/main/java/org/sendbird/client/auth/ApiKeyAuth.java +++ b/src/main/java/org/sendbird/client/auth/ApiKeyAuth.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/main/java/org/sendbird/client/auth/HttpBasicAuth.java b/src/main/java/org/sendbird/client/auth/HttpBasicAuth.java index a71cba39..0aa018fb 100644 --- a/src/main/java/org/sendbird/client/auth/HttpBasicAuth.java +++ b/src/main/java/org/sendbird/client/auth/HttpBasicAuth.java @@ -23,7 +23,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class HttpBasicAuth implements Authentication { private String username; private String password; diff --git a/src/main/java/org/sendbird/client/auth/HttpBearerAuth.java b/src/main/java/org/sendbird/client/auth/HttpBearerAuth.java index e63d6f6f..c97afebe 100644 --- a/src/main/java/org/sendbird/client/auth/HttpBearerAuth.java +++ b/src/main/java/org/sendbird/client/auth/HttpBearerAuth.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") +@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-11-24T21:22:01.103596+09:00[Asia/Seoul]") public class HttpBearerAuth implements Authentication { private final String scheme; private String bearerToken;