OpsgenieConnection holds OpsgenieConn plus ID/Name for database storage
| 48 | |
| 49 | // OpsgenieConnection holds OpsgenieConn plus ID/Name for database storage |
| 50 | type OpsgenieConnection struct { |
| 51 | helper.BaseConnection `mapstructure:",squash"` |
| 52 | OpsgenieConn `mapstructure:",squash"` |
| 53 | } |
| 54 | |
| 55 | func (connection *OpsgenieConnection) MergeFromRequest(target *OpsgenieConnection, body map[string]interface{}) error { |
| 56 | token := target.Token |
nothing calls this directly
no outgoing calls
no test coverage detected