faas/gateway/models/model_invoke_function_query_parameters.go
Lucas Roesler 06ade37420 feat: refactor api spec to use OpenAPI and add missing spec
Convert the existing swagger2.0 file to a moden OpenAPI file.
Add missing endpoitns and model definitions.

Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
2023-06-28 08:33:03 +01:00

33 lines
831 B
Go

// This file is auto-generated, DO NOT EDIT.
//
// Source:
//
// Title: OpenFaaS API Gateway
// Version: 0.8.12
package models
import (
validation "github.com/go-ozzo/ozzo-validation/v4"
)
// InvokeFunctionQueryParameters is an object.
type InvokeFunctionQueryParameters struct {
// FunctionName: Function name
FunctionName string `json:"functionName" mapstructure:"functionName"`
}
// Validate implements basic validation for this model
func (m InvokeFunctionQueryParameters) Validate() error {
return validation.Errors{}.Filter()
}
// GetFunctionName returns the FunctionName property
func (m InvokeFunctionQueryParameters) GetFunctionName() string {
return m.FunctionName
}
// SetFunctionName sets the FunctionName property
func (m *InvokeFunctionQueryParameters) SetFunctionName(val string) {
m.FunctionName = val
}