Module Values.BatchDeleteResponseSource

Placeholder documentation for BatchDeleteResponse

Sourcetype nonrec t = {
  1. failed : BatchFailedResultModel.t list option;
    (*

    List of failed operations

    *)
  2. successful : BatchSuccessfulResultModel.t list option;
    (*

    List of successful operations

    *)
}
Sourcetype nonrec error = [
  1. | `BadGatewayException of BadGatewayException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ConflictException of ConflictException.t
  4. | `ForbiddenException of ForbiddenException.t
  5. | `GatewayTimeoutException of GatewayTimeoutException.t
  6. | `InternalServerErrorException of InternalServerErrorException.t
  7. | `NotFoundException of NotFoundException.t
  8. | `TooManyRequestsException of TooManyRequestsException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?failed:??? -> ?successful:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] 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