Module Values.PublicKeySummarySource

Contains information about a public key.

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

    The identifier of the public key.

    *)
  2. name : String_.t option;
    (*

    A name to help identify the public key.

    *)
  3. createdTime : Timestamp.t option;
    (*

    The date and time when the public key was uploaded.

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

    The public key.

    *)
  5. comment : String_.t option;
    (*

    A comment to describe the public key. The comment cannot be longer than 128 characters.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?createdTime:??? -> ?encodedKey:??? -> ?comment:??? -> 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