AsanaConnection holds AsanaConn plus ID/Name for database storage
| 39 | |
| 40 | // AsanaConnection holds AsanaConn plus ID/Name for database storage |
| 41 | type AsanaConnection struct { |
| 42 | helper.BaseConnection `mapstructure:",squash"` |
| 43 | AsanaConn `mapstructure:",squash"` |
| 44 | } |
| 45 | |
| 46 | func (connection *AsanaConnection) MergeFromRequest(target *AsanaConnection, body map[string]interface{}) error { |
| 47 | token := target.Token |
nothing calls this directly
no outgoing calls
no test coverage detected