Values.ServiceAccountTokenSummarySourceA structure that contains the information about a service account token.
type nonrec t = {id : String_.t option;The unique ID of the service account token.
*)name : String_.t option;The name of the service account token.
*)createdAt : Timestamp.t option;When the service account token was created.
*)expiresAt : Timestamp.t option;When the service account token will expire.
*)lastUsedAt : Timestamp.t option;The last time the token was used to authorize a Grafana HTTP API.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of String_.t | `Timestamp of Timestamp.t ]) list ]