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

main.com.sceyt.chatuikit.config.QueryLimits.kt Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package com.sceyt.chatuikit.config

import androidx.annotation.IntRange

data class QueryLimits(
        @IntRange(1, 50) val channelListQueryLimit: Int = 20,
        @IntRange(1, 50) val channelMemberListQueryLimit: Int = 30,
        @IntRange(1, 50) val userListQueryLimit: Int = 30,
        @IntRange(1, 50) val messageListQueryLimit: Int = 50,
        @IntRange(1, 50) val attachmentListQueryLimit: Int = 20,
        @IntRange(1, 50) val reactionListQueryLimit: Int = 30,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy