zhttp.dsl
package zhttp.dsl
Members list
Type members
Classlikes
object IntVar
Integer extractor of a path variable:
Integer extractor of a path variable:
Path("/user/123") match {
case Root / "user" / IntVar(userId) => ...
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
IntVar.type
object LongVar
Long extractor of a path variable:
Long extractor of a path variable:
Path("/user/123") match {
case Root / "user" / LongVar(userId) => ...
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
LongVar.type
trait Path
object Path
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
object StringVar
UUID extractor of a path variable:
UUID extractor of a path variable:
Path("/user/thomasd") match {
case Root / "user" / StringVar(userId) => ...
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
StringVar.type
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Pathclass Objecttrait Matchableclass AnyShow all
In this article