Skip to content

Commit f60ac1f

Browse files
committed
chore: turn data classes to nullable in conversations.kt
1 parent ce5e7d7 commit f60ac1f

File tree

1 file changed

+4
-4
lines changed
  • plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat

1 file changed

+4
-4
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat/Conversations.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ data class TextBasedFilterOption(
1818
)
1919

2020
data class FilterOption(
21-
val id: String,
21+
val id: String? = null,
2222
val placeholder: String? = null,
2323
val title: String? = null,
2424
val description: String? = null,
2525
val icon: IconType? = null,
26-
val type: String,
26+
val type: String? = null,
2727
val options: List<Option>? = null,
2828
) {
2929
data class Option(
30-
val value: String,
31-
val label: String,
30+
val value: String? = null,
31+
val label: String? = null,
3232
)
3333
}
3434

0 commit comments

Comments
 (0)