27 lines
760 B
Go
27 lines
760 B
Go
|
/*
|
||
|
* Solidarity Mobility API
|
||
|
*
|
||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||
|
*
|
||
|
* API version: 1.0.0
|
||
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
||
|
*/
|
||
|
|
||
|
package openapi
|
||
|
|
||
|
type GetBookings404Response struct {
|
||
|
|
||
|
// Explain why the request couldn't be processed.
|
||
|
Error string `json:"error,omitempty"`
|
||
|
}
|
||
|
|
||
|
// AssertGetBookings404ResponseRequired checks if the required fields are not zero-ed
|
||
|
func AssertGetBookings404ResponseRequired(obj GetBookings404Response) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// AssertGetBookings404ResponseConstraints checks if the values respects the defined constraints
|
||
|
func AssertGetBookings404ResponseConstraints(obj GetBookings404Response) error {
|
||
|
return nil
|
||
|
}
|