Module Values.ContactSource

Represents contact information for a person or role associated with the procurement portal preference.

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

    The name of the contact person or role.

    *)
  2. email : EmailString.t option;
    (*

    The email address of the contact person or role.

    *)
}
Sourceval make : ?name:??? -> ?email:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BasicString.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