Rename bots-common to common
to make it match the name it is imported as
This commit is contained in:
98
common/gitea-generated/models/create_pull_request_option.go
Normal file
98
common/gitea-generated/models/create_pull_request_option.go
Normal file
@@ -0,0 +1,98 @@
|
||||
// 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"
|
||||
"github.com/go-openapi/validate"
|
||||
)
|
||||
|
||||
// CreatePullRequestOption CreatePullRequestOption options when creating a pull request
|
||||
//
|
||||
// swagger:model CreatePullRequestOption
|
||||
type CreatePullRequestOption struct {
|
||||
|
||||
// assignee
|
||||
Assignee string `json:"assignee,omitempty"`
|
||||
|
||||
// assignees
|
||||
Assignees []string `json:"assignees"`
|
||||
|
||||
// base
|
||||
Base string `json:"base,omitempty"`
|
||||
|
||||
// body
|
||||
Body string `json:"body,omitempty"`
|
||||
|
||||
// deadline
|
||||
// Format: date-time
|
||||
Deadline strfmt.DateTime `json:"due_date,omitempty"`
|
||||
|
||||
// head
|
||||
Head string `json:"head,omitempty"`
|
||||
|
||||
// labels
|
||||
Labels []int64 `json:"labels"`
|
||||
|
||||
// milestone
|
||||
Milestone int64 `json:"milestone,omitempty"`
|
||||
|
||||
// title
|
||||
Title string `json:"title,omitempty"`
|
||||
}
|
||||
|
||||
// Validate validates this create pull request option
|
||||
func (m *CreatePullRequestOption) Validate(formats strfmt.Registry) error {
|
||||
var res []error
|
||||
|
||||
if err := m.validateDeadline(formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CreatePullRequestOption) validateDeadline(formats strfmt.Registry) error {
|
||||
if swag.IsZero(m.Deadline) { // not required
|
||||
return nil
|
||||
}
|
||||
|
||||
if err := validate.FormatOf("due_date", "body", "date-time", m.Deadline.String(), formats); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// ContextValidate validates this create pull request option based on context it is used
|
||||
func (m *CreatePullRequestOption) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// MarshalBinary interface implementation
|
||||
func (m *CreatePullRequestOption) MarshalBinary() ([]byte, error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return swag.WriteJSON(m)
|
||||
}
|
||||
|
||||
// UnmarshalBinary interface implementation
|
||||
func (m *CreatePullRequestOption) UnmarshalBinary(b []byte) error {
|
||||
var res CreatePullRequestOption
|
||||
if err := swag.ReadJSON(b, &res); err != nil {
|
||||
return err
|
||||
}
|
||||
*m = res
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user