Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Result ¶
type Result struct {
// GUID represents a unique identifier for a session. It is a string field used in the Result struct
// and is also annotated with the json tag "session".
GUID string `json:"session"`
// Object represents a string field used in the Result struct. It is annotated with the json tag "object".
Object string `json:"object"`
// Operation represents a string field used in the Result struct. It is annotated with the json tag "operation".
Operation string `json:"operation"`
// Result represents the result field in the Result struct. It can hold any type of value.
// The field is annotated with the json tag "result".
Result any `json:"result"`
}
Result is a handleAuthentication JSON result object for the Nauthilus REST API.
Click to show internal directories.
Click to hide internal directories.