You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: slack-api-model-kotlin-extension/src/main/kotlin/com/slack/api/model/kotlin_extension/block/ContextBlockBuilder.kt
Copy file name to clipboardExpand all lines: slack-api-model-kotlin-extension/src/main/kotlin/com/slack/api/model/kotlin_extension/block/element/ButtonStyle.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,16 @@ enum class ButtonStyle {
6
6
* only be used for one button within a set.
7
7
*/
8
8
PRIMARY {
9
-
overrideval value:String?="primary"
9
+
overrideval value ="primary"
10
10
},
11
11
12
12
/**
13
13
* Danger gives buttons a red outline and text, and should be used when the action is destructive. Use danger even
Copy file name to clipboardExpand all lines: slack-api-model-kotlin-extension/src/main/kotlin/com/slack/api/model/kotlin_extension/block/element/RichTextInputElementBuilder.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class RichTextInputElementBuilder : Builder<RichTextInputElement> {
21
21
* view_submission payload to identify the value of the input element. Should be unique among all other action_ids
22
22
* used elsewhere by your app. Maximum length for this field is 255 characters.*
23
23
*
24
-
* @see <a href="https://api.slack.com/reference/block-kit/block-elements#input">Plain text input documentation</a>
24
+
* @see <a href="https://api.slack.com/reference/block-kit/block-elements#rich_text_input">Rich text input documentation</a>
25
25
*/
26
26
funactionId(id:String) {
27
27
actionId = id
@@ -32,7 +32,7 @@ class RichTextInputElementBuilder : Builder<RichTextInputElement> {
32
32
*
33
33
* The placeholder text shown in the plain-text input. Maximum length for the text in this field is 150 characters.
34
34
*
35
-
* @see <a href="https://api.slack.com/reference/block-kit/block-elements#input">Plain text input documentation</a>
35
+
* @see <a href="https://api.slack.com/reference/block-kit/block-elements#rich_text_input">Rich text input documentation</a>
Copy file name to clipboardExpand all lines: slack-api-model-kotlin-extension/src/main/kotlin/com/slack/api/model/kotlin_extension/block/element/container/SingleBlockElementContainer.kt
Copy file name to clipboardExpand all lines: slack-api-model-kotlin-extension/src/main/kotlin/com/slack/api/model/kotlin_extension/block/element/dsl/BlockElementInputDsl.kt
0 commit comments