go-gitea/models/state_type.go
jolheiser 021242f2ad
initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2023-04-11 22:59:19 -05:00

28 lines
636 B
Go

// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/strfmt"
)
// StateType StateType issue state type
//
// swagger:model StateType
type StateType string
// Validate validates this state type
func (m StateType) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this state type based on context it is used
func (m StateType) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}