Documentation
¶
Overview ¶
Package auth provides primitives to interact with the openapi HTTP API.
Code generated by github.com/deepmap/oapi-codegen/v2 version v2.1.0 DO NOT EDIT.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSwagger ¶
GetSwagger returns the Swagger specification corresponding to the generated code in this file. The external references of Swagger specification are resolved. The logic of resolving external references is tightly connected to "import-mapping" feature. Externally referenced files must be embedded in the corresponding golang packages. Urls can be supported but this task was out of the scope.
Types ¶
type Token ¶
type Token struct {
Token string `json:"token" mapstructure:"token"`
}
Token defines model for token.
type TokenRefreshRequest ¶
type TokenRefreshRequest struct {
Token string `json:"token" mapstructure:"token"`
}
TokenRefreshRequest defines model for token_refresh_request.
type TokenRefreshResponse ¶
type TokenRefreshResponse struct {
Token string `json:"token" mapstructure:"token"`
}
TokenRefreshResponse defines model for token_refresh_response.