module User:sig
..end
type
user = {
|
id : |
|
first_name : |
|
last_name : |
|
username : |
Create a `user` in a concise manner
val create : id:int ->
first_name:string ->
?last_name:string option -> ?username:string option -> unit -> user
val read : Yojson.Safe.json -> user