Module Values.ActorSource

Represents an actor used during penetration testing. An actor defines a user or entity that interacts with the target application, including authentication credentials and target URIs.

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

    The unique identifier for the actor.

    *)
  2. uris : UriList.t option;
    (*

    The list of URIs that the actor targets during testing.

    *)
  3. authentication : Authentication.t option;
    (*

    The authentication configuration for the actor.

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

    A description of the actor.

    *)
}
Sourceval make : ?identifier:??? -> ?uris:??? -> ?authentication:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) 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