kz.btsd.messenger.bot.domain.content.Button.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of form-builder Show documentation
Show all versions of form-builder Show documentation
form builder for AITU messenger bots
The newest version!
package kz.btsd.messenger.bot.domain.content
import com.fasterxml.jackson.annotation.JsonProperty
import kz.btsd.messenger.bot.domain.FormAction
import kz.btsd.messenger.bot.domain.Options
data class Button(
override val id: String,
override val type: String,
var title: String? = null,
@JsonProperty("button_type")
var buttonType: String? = null,
var options: Options? = null,
@JsonProperty("form_action")
var formAction: FormAction? = null
) : Content