Module Values.GitLabDetailsSource

Service details for GitLab integration.

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

    GitLab instance URL (e.g., https://gitlab.com or self-hosted instance).

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

    Type of GitLab access token

    *)
  3. tokenValue : GitLabDetailsTokenValueString.t;
    (*

    GitLab access token value

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

    Optional GitLab group ID for group-level access tokens

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