WithPretty makes the response body pretty-printed.
()
| 326 | |
| 327 | // WithPretty makes the response body pretty-printed. |
| 328 | func (f Get) WithPretty() func(*GetRequest) { |
| 329 | return func(r *GetRequest) { |
| 330 | r.Pretty = true |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | // WithHuman makes statistical values human-readable. |
| 335 | func (f Get) WithHuman() func(*GetRequest) { |
no outgoing calls