We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1025e0d commit 9981463Copy full SHA for 9981463
response.go
@@ -13,7 +13,8 @@ type Response struct {
13
14
// String represents a printable form of the response.
15
func (r Response) String() string {
16
- ret := fmt.Sprintf("Request id: %s\n", r.ID)
+ ret := fmt.Sprintf("Status: %d\n", r.Status)
17
+ ret += fmt.Sprintf("Request id: %s\n", r.ID)
18
if r.Receipt != "" {
19
ret += fmt.Sprintf("Receipt: %s\n", r.Receipt)
20
}
0 commit comments