We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bdd533 commit be341b4Copy full SHA for be341b4
src/bucket/list_buckets.gleam
@@ -74,5 +74,8 @@ fn response_success(
74
75
xml.element("ListAllMyBucketsResult", ListAllMyBucketsResult([], option.None))
76
|> xml.keep(buckets, fn(d, b) { ListAllMyBucketsResult(..d, buckets: b) })
77
+ |> xml.keep_text("ContinuationToken", fn(d, b) {
78
+ ListAllMyBucketsResult(..d, continuation_token: option.Some(b))
79
+ })
80
|> xml.parse(response.body)
81
}
0 commit comments