29 lines
726 B
Go
29 lines
726 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 PassengerPost400Response struct {
|
|
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
// AssertPassengerPost400ResponseRequired checks if the required fields are not zero-ed
|
|
func AssertPassengerPost400ResponseRequired(obj PassengerPost400Response) error {
|
|
return nil
|
|
}
|
|
|
|
// AssertPassengerPost400ResponseConstraints checks if the values respects the defined constraints
|
|
func AssertPassengerPost400ResponseConstraints(obj PassengerPost400Response) error {
|
|
return nil
|
|
}
|