Module Smaws_Lib.Response

type metadata = {
  1. request_id : string option;
}
type 'a t = {
  1. response : 'a;
  2. metadata : metadata;
}
val map : f:('a -> 'b) -> 'a t -> 'b t