21 lines
648 B
Go
21 lines
648 B
Go
package model
|
|
|
|
// CommunicationRequestHttp ...
|
|
type CommunicationRequestHttp struct {
|
|
ResponseImmediately bool `json:"responseImmediately"`
|
|
Authentication string `json:"authentication"`
|
|
Payload HttpRequest `json:"payload"`
|
|
|
|
// collection to store log data, will be prepended with log-, default it stored in logs collections
|
|
LogTarget string `json:"logTarget"`
|
|
}
|
|
|
|
// HttpRequest ...
|
|
type HttpRequest struct {
|
|
URL string `json:"url"`
|
|
Method string `json:"method"`
|
|
Data string `json:"data"`
|
|
Header map[string]string `json:"header"`
|
|
Query map[string]string `json:"query"`
|
|
}
|