Module Values.RegisteredGitLabServiceDetailsSource

Details specific to a registered GitLab instance.

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

    The GitLab instance URL.

    *)
  2. tokenType : GitLabTokenType.t option;
    (*

    Type of GitLab access token

    *)
  3. groupId : String_.t option;
    (*

    Optional GitLab group ID for group-level access tokens

    *)
}
Sourceval make : ?targetUrl:??? -> ?tokenType:??? -> ?groupId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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