All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.btsd.messenger.bot.domain.content.DatePicker.kt Maven / Gradle / Ivy

The newest version!
package kz.btsd.messenger.bot.domain.content

import com.fasterxml.jackson.annotation.JsonProperty
import kz.btsd.messenger.bot.domain.Options

data class DatePicker(
        override val id: String,
        override val type: String,
        var title: String? = null,
        var placeholder: String? = null,
        @JsonProperty("selected_date")
        var selectedDate: String? = null,
        var options: Options? = null
) : Content




© 2015 - 2024 Weber Informatics LLC | Privacy Policy