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

110 lines
2.5 KiB
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/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// CreateStatusOption CreateStatusOption holds the information needed to create a new CommitStatus for a Commit
//
// swagger:model CreateStatusOption
type CreateStatusOption struct {
// context
Context string `json:"context,omitempty"`
// description
Description string `json:"description,omitempty"`
// target URL
TargetURL string `json:"target_url,omitempty"`
// state
State CommitStatusState `json:"state,omitempty"`
}
// Validate validates this create status option
func (m *CreateStatusOption) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateState(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *CreateStatusOption) validateState(formats strfmt.Registry) error {
if swag.IsZero(m.State) { // not required
return nil
}
if err := m.State.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("state")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("state")
}
return err
}
return nil
}
// ContextValidate validate this create status option based on the context it is used
func (m *CreateStatusOption) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateState(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *CreateStatusOption) contextValidateState(ctx context.Context, formats strfmt.Registry) error {
if err := m.State.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("state")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("state")
}
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *CreateStatusOption) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CreateStatusOption) UnmarshalBinary(b []byte) error {
var res CreateStatusOption
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}