com.justai.jaicf.channel.viber.sdk.message.Contact.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viber Show documentation
Show all versions of viber Show documentation
JAICF-Kotlin Viber Channel implementation. Enables JAICF-Kotlin integration with Viber
The newest version!
package com.justai.jaicf.channel.viber.sdk.message
/**
* @link https://developers.viber.com/docs/api/rest-bot-api/#contact-message
*/
data class Contact @JvmOverloads constructor(
val name: String,
val phoneNumber: String,
val avatar: String? = null
)