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

in.svix-kotlin.1.38.0.source-code.EventTypeListOptions.kt Maven / Gradle / Ivy

package com.svix.kotlin

class EventTypeListOptions() : ListOptions() {
    var withContent: Boolean? = null
    var includeAchived: Boolean? = null

    fun withContent(withContent: Boolean) = apply { this.withContent = withContent }

    fun includeAchived(includeAchived: Boolean) = apply { this.includeAchived = includeAchived }

    override fun iterator(iterator: String) = apply { super.iterator(iterator) }

    override fun limit(limit: Int) = apply { super.limit(limit) }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy