module Contact:sig
..end
type
contact = {
|
phone_number : |
|
first_name : |
|
last_name : |
|
user_id : |
Create a `contact` in a concise manner
val create : phone_number:string ->
first_name:string ->
?last_name:string option ->
?user_id:int option -> unit -> contact
val read : Yojson.Safe.json -> contact