Module Values.UserDetailsSource

Specifies the user name, server ID, and session ID for a workflow.

Sourcetype nonrec t = {
  1. userName : UserName.t option;
    (*

    A unique string that identifies a Transfer Family user associated with a server.

    *)
  2. serverId : ServerId.t option;
    (*

    The system-assigned unique identifier for a Transfer server instance.

    *)
  3. sessionId : SessionId.t option;
    (*

    The system-assigned unique identifier for a session that corresponds to the workflow.

    *)
}
Sourceval make : ?userName:??? -> ?serverId:??? -> ?sessionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserName.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