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

commonMain.kiota.SegmentMatch.kt Maven / Gradle / Ivy

Go to download

A kotlin multiplatform library for representing headless collection based ui such as lists, tables and grids

There is a newer version: 3.0.11
Show newest version
@file:JsExport

package kiota

import kotlinx.JsExport

sealed interface SegmentMatch {
    val path: String
}

data class WildCardMatch(override val path: String) : SegmentMatch

data class DynamicParamMatch(
    override val path: String,
    val key: String,
    val value: String
) : SegmentMatch

data class ExactMatch(override val path: String) : SegmentMatch




© 2015 - 2024 Weber Informatics LLC | Privacy Policy