Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BasePagingResponse ¶
type BasePagingResponse struct { Count int `json:"count"` CurrentPage int `json:"currentPage"` TotalPage int `json:"totalPages"` Params PagingParams `json:"params"` }
type BaseSimplePagingResponse ¶
type BaseSimplePagingResponse struct { CurrentPage int `json:"currentPage"` Next bool `json:"next"` Params PagingParams `json:"params"` }
type HealthEndpoint ¶
type HealthEndpoint struct { Method string `json:"method"` Path string `json:"path"` Verify string `json:"name"` }
func (HealthEndpoint) IsDocumentation ¶
func (e HealthEndpoint) IsDocumentation() bool
func (HealthEndpoint) String ¶
func (e HealthEndpoint) String() string
type HealthEndpoints ¶
type HealthEndpoints []HealthEndpoint
func (HealthEndpoints) String ¶
func (e HealthEndpoints) String() []string
func (HealthEndpoints) Verify ¶
func (e HealthEndpoints) Verify() HealthEndpoints
type HealthRoutesResponse ¶
type HealthRoutesResponse struct {
Routes []string `json:"routes"`
}
type PagingParams ¶
type PagingResponse ¶
type PagingResponse struct { Count int `json:"count"` CurrentPage int `json:"currentPage"` TotalPage int `json:"totalPages"` Params PagingParams `json:"params"` Items interface{} `json:"items"` }
type SimplePagingResponse ¶
type SimplePagingResponse struct { CurrentPage int `json:"currentPage"` Next bool `json:"next"` Params PagingParams `json:"params"` Items interface{} `json:"items"` }
Click to show internal directories.
Click to hide internal directories.