Skip to content

Commit c96ea99

Browse files
committed
chore: correction for data class
1 parent 7303ebe commit c96ea99

File tree

1 file changed

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

1 file changed

+12
-4
lines changed

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

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,18 @@ data class TextBasedFilterOption(
1717

1818
data class FilterOption(
1919
val id: String,
20-
val type: String? = null,
21-
val placeholder: String?,
22-
val icon: IconType?,
23-
)
20+
val placeholder: String? = null,
21+
val title: String? = null,
22+
val description: String? = null,
23+
val icon: IconType? = null,
24+
val type: String,
25+
val options: List<Option>? = null,
26+
) {
27+
data class Option(
28+
val value: String? = null,
29+
val label: String? = null,
30+
)
31+
}
2432

2533
data class Action(
2634
val id: String,

0 commit comments

Comments
 (0)