// 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" ) // EditPullRequestOption EditPullRequestOption options when modify pull request // // swagger:model EditPullRequestOption type EditPullRequestOption struct { // Whether to allow maintainer edits AllowMaintainerEdit bool `json:"allow_maintainer_edit,omitempty"` // The new primary assignee username Assignee string `json:"assignee,omitempty"` // The new list of assignee usernames Assignees []string `json:"assignees"` // The new base branch for the pull request Base string `json:"base,omitempty"` // The new description body for the pull request Body string `json:"body,omitempty"` // deadline // Format: date-time Deadline strfmt.DateTime `json:"due_date,omitempty"` // The new list of label IDs for the pull request Labels []int64 `json:"labels"` // The new milestone ID for the pull request Milestone int64 `json:"milestone,omitempty"` // Whether to remove the current deadline RemoveDeadline bool `json:"unset_due_date,omitempty"` // The new state for the pull request State string `json:"state,omitempty"` // The new title for the pull request Title string `json:"title,omitempty"` } // Validate validates this edit pull request option func (m *EditPullRequestOption) 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 *EditPullRequestOption) 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 edit pull request option based on context it is used func (m *EditPullRequestOption) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *EditPullRequestOption) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *EditPullRequestOption) UnmarshalBinary(b []byte) error { var res EditPullRequestOption if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }