Documentation ¶
Index ¶
- Constants
- func GetBookByID2InputPath(id string) (string, error)
- func ValidateGetBookByID2Input(id string) error
- type Author
- type AuthorArray
- type AuthorSet
- type AuthorsResponse
- type AuthorsResponseMetadata
- type BadRequest
- type Book
- type Error
- type GetAuthorsInput
- type GetBookByID2Input
- type GetBookByIDInput
- type GetBooksInput
- type HealthCheckInput
- type InternalError
- type Unathorized
Constants ¶
const ( BookGenreScifi string = "scifi" BookGenreMystery string = "mystery" BookGenreHorror string = "horror" )
Variables ¶
This section is empty.
Functions ¶
func GetBookByID2InputPath ¶ added in v1.3.0
GetBookByID2InputPath returns the URI path for the input.
func ValidateGetBookByID2Input ¶ added in v0.5.0
ValidateGetBookByID2Input returns an error if the input parameter doesn't satisfy the requirements in the swagger yml file.
Types ¶
type Author ¶ added in v1.3.0
type Author struct { // id ID string `json:"id,omitempty"` // name Name string `json:"name,omitempty"` }
Author author swagger:model Author
type AuthorArray ¶ added in v1.3.0
type AuthorArray []*Author
AuthorArray author array swagger:model AuthorArray
type AuthorSet ¶ added in v1.3.0
type AuthorSet struct { // random prop RandomProp int64 `json:"randomProp,omitempty"` // results Results AuthorArray `json:"results"` }
AuthorSet author set swagger:model AuthorSet
type AuthorsResponse ¶ added in v1.3.0
type AuthorsResponse struct { // author set AuthorSet *AuthorSet `json:"authorSet,omitempty"` // metadata Metadata *AuthorsResponseMetadata `json:"metadata,omitempty"` }
AuthorsResponse authors response swagger:model AuthorsResponse
type AuthorsResponseMetadata ¶ added in v1.3.0
type AuthorsResponseMetadata struct { // count Count int64 `json:"count,omitempty"` }
AuthorsResponseMetadata authors response metadata swagger:model AuthorsResponseMetadata
type BadRequest ¶ added in v0.4.0
type BadRequest struct { // message Message string `json:"message,omitempty"` }
BadRequest bad request swagger:model BadRequest
func (BadRequest) Error ¶ added in v0.4.0
func (o BadRequest) Error() string
type Book ¶
type Book struct { // author Author string `json:"author,omitempty"` // genre Genre string `json:"genre,omitempty"` // id ID int64 `json:"id,omitempty"` // name Name string `json:"name,omitempty"` // other Other map[string]string `json:"other,omitempty"` // other array OtherArray map[string][]string `json:"otherArray,omitempty"` }
Book book swagger:model Book
type Error ¶
type Error struct { // code Code int32 `json:"code,omitempty"` // message Message string `json:"message,omitempty"` }
Error error swagger:model Error
type GetAuthorsInput ¶ added in v1.3.0
GetAuthorsInput holds the input parameters for a getAuthors operation.
func (GetAuthorsInput) Path ¶ added in v1.3.0
func (i GetAuthorsInput) Path() (string, error)
Path returns the URI path for the input.
func (GetAuthorsInput) Validate ¶ added in v1.3.0
func (i GetAuthorsInput) Validate() error
Validate returns an error if any of the GetAuthorsInput parameters don't satisfy the requirements from the swagger yml file.
type GetBookByID2Input ¶
type GetBookByID2Input struct {
ID string
}
GetBookByID2Input holds the input parameters for a getBookByID2 operation.
type GetBookByIDInput ¶
type GetBookByIDInput struct { BookID int64 AuthorID *string Authorization string XDontRateLimitMeBro string RandomBytes *strfmt.Base64 }
GetBookByIDInput holds the input parameters for a getBookByID operation.
func (GetBookByIDInput) Path ¶ added in v1.3.0
func (i GetBookByIDInput) Path() (string, error)
Path returns the URI path for the input.
func (GetBookByIDInput) Validate ¶
func (i GetBookByIDInput) Validate() error
Validate returns an error if any of the GetBookByIDInput parameters don't satisfy the requirements from the swagger yml file.
type GetBooksInput ¶
type GetBooksInput struct { Authors []string Available *bool State *string Published *strfmt.Date SnakeCase *string Completed *strfmt.DateTime MaxPages *float64 MinPages *int32 PagesToTime *float32 Authorization string StartingAfter *int64 }
GetBooksInput holds the input parameters for a getBooks operation.
func (GetBooksInput) Path ¶ added in v1.3.0
func (i GetBooksInput) Path() (string, error)
Path returns the URI path for the input.
func (GetBooksInput) Validate ¶
func (i GetBooksInput) Validate() error
Validate returns an error if any of the GetBooksInput parameters don't satisfy the requirements from the swagger yml file.
type HealthCheckInput ¶
type HealthCheckInput struct { }
HealthCheckInput holds the input parameters for a healthCheck operation.
func (HealthCheckInput) Path ¶ added in v1.3.0
func (i HealthCheckInput) Path() (string, error)
Path returns the URI path for the input.
func (HealthCheckInput) Validate ¶
func (i HealthCheckInput) Validate() error
Validate returns an error if any of the HealthCheckInput parameters don't satisfy the requirements from the swagger yml file.
type InternalError ¶ added in v0.4.0
type InternalError struct { // message Message string `json:"message,omitempty"` }
InternalError internal error swagger:model InternalError
func (InternalError) Error ¶ added in v0.4.0
func (o InternalError) Error() string
type Unathorized ¶ added in v0.6.0
type Unathorized struct { // message Message string `json:"message,omitempty"` }
Unathorized unathorized swagger:model Unathorized
func (Unathorized) Error ¶ added in v0.6.0
func (o Unathorized) Error() string