Module Values.DeleteSessionResponseSource

Removes session information for a specified bot, alias, and user ID.

Sourcetype nonrec t = {
  1. botName : BotName.t option;
    (*

    The name of the bot associated with the session data.

    *)
  2. botAlias : BotAlias.t option;
    (*

    The alias in use for the bot associated with the session data.

    *)
  3. userId : UserId.t option;
    (*

    The ID of the client application user.

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

    The unique identifier for the session.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalFailureException of InternalFailureException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `NotFoundException of NotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botName:??? -> ?botAlias:??? -> ?userId:??? -> ?sessionId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BotName.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