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

ski.gagar.vxutil.vertigram.methods.GetUserProfilePhotos.kt Maven / Gradle / Ivy

The newest version!
package ski.gagar.vxutil.vertigram.methods

import ski.gagar.vertigram.annotations.TgMethod
import ski.gagar.vxutil.vertigram.types.UserProfilePhotos

@TgMethod
data class GetUserProfilePhotos(
    val userId: Long,
    val offset: Long = Defaults.offset,
    val limit: Long = Defaults.limit
) : JsonTgCallable>() {
    object Defaults {
        const val offset = 0L
        const val limit = 100L
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy