Module Values.AccessTokenSummarySource

Information about a specified personal access token (PAT).

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

    The system-generated ID of the personal access token.

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

    The friendly name of the personal access token.

    *)
  3. expiresTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?expiresTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccessTokenId.t | `Timestamp of SyntheticTimestamp_date_time.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