case class RequestRoute(uriWithMajor: String, uriWithoutMajor: String, uri: Uri, method: HttpMethod) extends Product with Serializable
Used by requests for specifying an uri to send to, together with a method to use.
- uriWithMajor
A string containing the route without any minor parameters filled in
- uriWithoutMajor
A string containing the route without any major or minor parameters filled in
- uri
The uri to send to
- method
The method to use
- Source
- requestObjs.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RequestRoute
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new RequestRoute(uriWithMajor: String, uriWithoutMajor: String, uri: Uri, method: HttpMethod)
- uriWithMajor
A string containing the route without any minor parameters filled in
- uriWithoutMajor
A string containing the route without any major or minor parameters filled in
- uri
The uri to send to
- method
The method to use