Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface {
SendRequest(ctx context.Context, method string, url string, body Data, headers Data, skipTLSVerify bool) (resp HttpDetails, err error)
}
Client is the interface to interact with Http
type Data ¶ added in v1.0.0
type Data struct {
Encrypted interface{} // Data containing encrypted data -> to be shown at the status
Decrypted interface{} // Data containing sensitive data -> to be sent
}
type HttpDetails ¶
type HttpDetails struct {
HttpResponse HttpResponse
HttpRequest HttpRequest
}
type HttpRequest ¶
Click to show internal directories.
Click to hide internal directories.