Module Values.PickupDetailsSource

Information identifying the person picking up the device.

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

    The name of the person picking up the device.

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

    The phone number of the person picking up the device.

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

    The email address of the person picking up the device.

    *)
  4. identificationNumber : String_.t option;
    (*

    The number on the credential identifying the person picking up the device.

    *)
  5. identificationExpirationDate : Timestamp.t option;
    (*

    Expiration date of the credential identifying the person picking up the device.

    *)
  6. identificationIssuingOrg : String_.t option;
    (*

    Organization that issued the credential identifying the person picking up the device.

    *)
  7. devicePickupId : DevicePickupId.t option;
    (*

    The unique ID for a device that will be picked up.

    *)
}
Sourceval make : ?name:??? -> ?phoneNumber:??? -> ?email:??? -> ?identificationNumber:??? -> ?identificationExpirationDate:??? -> ?identificationIssuingOrg:??? -> ?devicePickupId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Timestamp.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