Skip to content

Commit

Permalink
Fix last seen bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-jeon committed Apr 12, 2024
1 parent f35d497 commit f53471b
Show file tree
Hide file tree
Showing 347 changed files with 366 additions and 362 deletions.
4 changes: 4 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11714,6 +11714,7 @@ components:
is_muted:
type: boolean
last_seen_at:
format: int64
type: integer
nickname:
type: string
Expand Down Expand Up @@ -12410,6 +12411,7 @@ components:
is_blocked_by_me:
type: boolean
last_seen_at:
format: int64
type: integer
metadata:
type: object
Expand Down Expand Up @@ -12509,6 +12511,7 @@ components:
is_active:
type: boolean
last_seen_at:
format: int64
type: integer
nickname:
type: string
Expand Down Expand Up @@ -19608,6 +19611,7 @@ components:
description: "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."
format: int64
type: integer
discovery_keys:
description: "Specifies an array of unique keys of the user which is provided\
Expand Down
2 changes: 1 addition & 1 deletion docs/SendBirdMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
|**friendName** | **String** | | [optional] |
|**isActive** | **Boolean** | | [optional] |
|**isMuted** | **Boolean** | | [optional] |
|**lastSeenAt** | **Integer** | | [optional] |
|**lastSeenAt** | **Long** | | [optional] |
|**nickname** | **String** | | [optional] |
|**plainProfileUrl** | **String** | | [optional] |
|**preferredLanguages** | **List<String>** | | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion docs/SendBirdSender.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
|**friendName** | **String** | | [optional] |
|**isActive** | **Boolean** | | [optional] |
|**isBlockedByMe** | **Boolean** | | [optional] |
|**lastSeenAt** | **Integer** | | [optional] |
|**lastSeenAt** | **Long** | | [optional] |
|**metadata** | **Object** | | [optional] |
|**nickname** | **String** | | [optional] |
|**plainProfileUrl** | **String** | | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion docs/SendBirdUser.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ User
|**accessToken** | **String** | | [optional] |
|**hasEverLoggedIn** | **Boolean** | | [optional] |
|**isActive** | **Boolean** | | [optional] |
|**lastSeenAt** | **Integer** | | [optional] |
|**lastSeenAt** | **Long** | | [optional] |
|**nickname** | **String** | | [optional] |
|**discoveryKeys** | **List<String>** | | [optional] |
|**sessionTokens** | **List<Object>** | | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion docs/UpdateUserByIdData.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
|**issueSessionToken** | **Boolean** | 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) | [optional] |
|**sessionTokenExpiresAt** | **Integer** | 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. | [optional] |
|**isActive** | **Boolean** | Determines whether to activate or deactivate the user within the application. | [optional] |
|**lastSeenAt** | **Integer** | 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. | [optional] |
|**lastSeenAt** | **Long** | 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. | [optional] |
|**discoveryKeys** | **List<String>** | 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. | [optional] |
|**preferredLanguages** | **List<String>** | 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. | [optional] |
|**leaveAllWhenDeactivated** | **Boolean** | 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. | [optional] |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public abstract class AbstractOpenApiSchema {

// store the actual instance of the schema/object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
AddApnsPushConfigurationData.JSON_PROPERTY_APNS_TYPE
})
@JsonTypeName("addApnsPushConfigurationData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddApnsPushConfigurationData {
public static final String JSON_PROPERTY_APNS_CERT = "apns_cert";
private File apnsCert;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddApnsPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS
})
@JsonTypeName("addApnsPushConfigurationResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddApnsPushConfigurationResponse {
public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations";
private List<AddApnsPushConfigurationResponsePushConfigurationsInner> pushConfigurations = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
AddApnsPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND
})
@JsonTypeName("addApnsPushConfigurationResponse_push_configurations_inner")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddApnsPushConfigurationResponsePushConfigurationsInner {
public static final String JSON_PROPERTY_ID = "id";
private String id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddEmojiCategoriesResponse.JSON_PROPERTY_EMOJI_CATEGORIES
})
@JsonTypeName("addEmojiCategoriesResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddEmojiCategoriesResponse {
public static final String JSON_PROPERTY_EMOJI_CATEGORIES = "emoji_categories";
private List<AddEmojiCategoriesResponseEmojiCategoriesInner> emojiCategories = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddEmojiCategoriesResponseEmojiCategoriesInner.JSON_PROPERTY_URL
})
@JsonTypeName("addEmojiCategoriesResponse_emoji_categories_inner")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddEmojiCategoriesResponseEmojiCategoriesInner {
public static final String JSON_PROPERTY_ID = "id";
private BigDecimal id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddEmojisData.JSON_PROPERTY_EMOJIS
})
@JsonTypeName("addEmojisData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddEmojisData {
public static final String JSON_PROPERTY_EMOJI_CATEGORY_ID = "emoji_category_id";
private Integer emojiCategoryId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddEmojisResponse.JSON_PROPERTY_EMOJIS
})
@JsonTypeName("addEmojisResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddEmojisResponse {
public static final String JSON_PROPERTY_EMOJIS = "emojis";
private List<ListAllEmojisAndEmojiCategoriesResponseEmojiCategoriesInnerEmojisInner> emojis = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddExtraDataToMessageData.JSON_PROPERTY_SORTED_METAARRAY
})
@JsonTypeName("addExtraDataToMessageData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddExtraDataToMessageData {
public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type";
private String channelType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddExtraDataToMessageResponse.JSON_PROPERTY_SORTED_METAARRAY
})
@JsonTypeName("addExtraDataToMessageResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddExtraDataToMessageResponse {
public static final String JSON_PROPERTY_SORTED_METAARRAY = "sorted_metaarray";
private List<ListMessagesResponseMessagesInnerSortedMetaarrayInner> sortedMetaarray = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
AddFcmPushConfigurationData.JSON_PROPERTY_PUSH_SOUND
})
@JsonTypeName("addFcmPushConfigurationData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddFcmPushConfigurationData {
public static final String JSON_PROPERTY_API_KEY = "api_key";
private String apiKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddFcmPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS
})
@JsonTypeName("addFcmPushConfigurationResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddFcmPushConfigurationResponse {
public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations";
private List<AddFcmPushConfigurationResponsePushConfigurationsInner> pushConfigurations = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddFcmPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND
})
@JsonTypeName("addFcmPushConfigurationResponse_push_configurations_inner")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddFcmPushConfigurationResponsePushConfigurationsInner {
public static final String JSON_PROPERTY_ID = "id";
private String id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
AddHmsPushConfigurationData.JSON_PROPERTY_PUSH_SOUND
})
@JsonTypeName("addHmsPushConfigurationData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddHmsPushConfigurationData {
public static final String JSON_PROPERTY_HUAWEI_APP_ID = "huawei_app_id";
private String huaweiAppId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddHmsPushConfigurationResponse.JSON_PROPERTY_PUSH_CONFIGURATIONS
})
@JsonTypeName("addHmsPushConfigurationResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddHmsPushConfigurationResponse {
public static final String JSON_PROPERTY_PUSH_CONFIGURATIONS = "push_configurations";
private List<AddHmsPushConfigurationResponsePushConfigurationsInner> pushConfigurations = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
AddHmsPushConfigurationResponsePushConfigurationsInner.JSON_PROPERTY_PUSH_SOUND
})
@JsonTypeName("addHmsPushConfigurationResponse_push_configurations_inner")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddHmsPushConfigurationResponsePushConfigurationsInner {
public static final String JSON_PROPERTY_ID = "id";
private String id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
AddIpToWhitelistData.JSON_PROPERTY_IP_WHITELIST_ADDRESSES
})
@JsonTypeName("addIpToWhitelistData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddIpToWhitelistData {
public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses";
private List<String> ipWhitelistAddresses = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
AddIpToWhitelistResponse.JSON_PROPERTY_IP_WHITELIST_ADDRESSES
})
@JsonTypeName("addIpToWhitelistResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddIpToWhitelistResponse {
public static final String JSON_PROPERTY_IP_WHITELIST_ADDRESSES = "ip_whitelist_addresses";
private List<String> ipWhitelistAddresses = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
AddReactionToAMessageData.JSON_PROPERTY_REACTION
})
@JsonTypeName("addReactionToAMessageData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddReactionToAMessageData {
public static final String JSON_PROPERTY_CHANNEL_TYPE = "channel_type";
private String channelType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
AddReactionToAMessageResponse.JSON_PROPERTY_MSG_ID
})
@JsonTypeName("addReactionToAMessageResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddReactionToAMessageResponse {
public static final String JSON_PROPERTY_USER_ID = "user_id";
private String userId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
AddRegistrationOrDeviceTokenData.JSON_PROPERTY_APNS_DEVICE_TOKEN
})
@JsonTypeName("addRegistrationOrDeviceTokenData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddRegistrationOrDeviceTokenData {
public static final String JSON_PROPERTY_GCM_REG_TOKEN = "gcm_reg_token";
private String gcmRegToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
AddRegistrationOrDeviceTokenResponse.JSON_PROPERTY_USER
})
@JsonTypeName("addRegistrationOrDeviceTokenResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class AddRegistrationOrDeviceTokenResponse {
public static final String JSON_PROPERTY_TOKEN = "token";
private String token;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
BanFromChannelsWithCustomChannelTypesData.JSON_PROPERTY_CHANNEL_CUSTOM_TYPES
})
@JsonTypeName("banFromChannelsWithCustomChannelTypesData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class BanFromChannelsWithCustomChannelTypesData {
public static final String JSON_PROPERTY_CHANNEL_CUSTOM_TYPES = "channel_custom_types";
private List<String> channelCustomTypes = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
BanUsersInChannelsWithCustomChannelTypeData.JSON_PROPERTY_ON_DEMAND_UPSERT
})
@JsonTypeName("banUsersInChannelsWithCustomChannelTypeData")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class BanUsersInChannelsWithCustomChannelTypeData {
public static final String JSON_PROPERTY_BANNED_LIST = "banned_list";
private List<BanUsersInChannelsWithCustomChannelTypeDataBannedListInner> bannedList = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
BanUsersInChannelsWithCustomChannelTypeDataBannedListInner.JSON_PROPERTY_DESCRIPTION
})
@JsonTypeName("banUsersInChannelsWithCustomChannelTypeData_banned_list_inner")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T17:36:06.761039+09:00[Asia/Seoul]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-12T19:00:24.771175+09:00[Asia/Seoul]")
public class BanUsersInChannelsWithCustomChannelTypeDataBannedListInner {
public static final String JSON_PROPERTY_USER_ID = "user_id";
private String userId;
Expand Down
Loading

0 comments on commit f53471b

Please sign in to comment.