Created
September 6, 2018 10:25
-
-
Save brabster/64d4b4f28f6410888c24ee4aee6b515d to your computer and use it in GitHub Desktop.
Scala Types in Scio Pipelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type ClientIp = String | |
type UserId = String | |
type Path = String | |
type StatusCode = Int | |
case class Entry(clientIp: ClientIp, userId: UserId, timestamp: Instant, path: Path, statusCode: StatusCode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment