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

com.pengrad.telegrambot.model.request.ForceReply.kt Maven / Gradle / Ivy

There is a newer version: 7.11.0
Show newest version
package com.pengrad.telegrambot.model.request

/**
 * stas
 * 8/4/15.
 */
data class ForceReply @JvmOverloads constructor(
        @get:JvmName("selective") var selective: Boolean = false,
        @get:JvmName("inputFieldPlaceholder") var inputFieldPlaceholder: String? = null
) : Keyboard() {
    private val force_reply = true

    fun inputFieldPlaceholder(inputFieldPlaceholder: String?): ForceReply {
        this.inputFieldPlaceholder = inputFieldPlaceholder
        return this
    }

    fun selective(selective: Boolean): ForceReply {
        this.selective = selective
        return this
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy