Module Values.DatasetOwnerInfoSource

A structure for Dataset owner info.

Sourcetype nonrec t = {
  1. name : OwnerName.t option;
    (*

    The name of the Dataset owner.

    *)
  2. phoneNumber : PhoneNumber.t option;
    (*

    Phone number for the Dataset owner.

    *)
  3. email : Email.t option;
    (*

    Email address for the Dataset owner.

    *)
}
Sourceval make : ?name:??? -> ?phoneNumber:??? -> ?email:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OwnerName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t