Pretty tells Elasticsearch whether to return a formatted JSON response.
(pretty bool)
| 40 | |
| 41 | // Pretty tells Elasticsearch whether to return a formatted JSON response. |
| 42 | func (s *GetScriptService) Pretty(pretty bool) *GetScriptService { |
| 43 | s.pretty = &pretty |
| 44 | return s |
| 45 | } |
| 46 | |
| 47 | // Human specifies whether human readable values should be returned in |
| 48 | // the JSON response, e.g. "7.5mb". |
nothing calls this directly
no outgoing calls
no test coverage detected