ToJSON will marshal this map as JSON
()
| 55 | |
| 56 | // ToJSON will marshal this map as JSON |
| 57 | func (ikm *InstanceKeyMap) ToJSON() (string, error) { |
| 58 | bytes, err := ikm.MarshalJSON() |
| 59 | return string(bytes), err |
| 60 | } |
| 61 | |
| 62 | // ToJSONString will marshal this map as JSON |
| 63 | func (ikm *InstanceKeyMap) ToJSONString() string { |
no test coverage detected