Fetch the repository succeeded.
// 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 (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// Comment A comment for an issue.
//
// Users can comment on issues to discuss plans for resolution etc.
//
// swagger:model Comment
type Comment struct {
// The content of the comment.
//
// This is a free text field with support for github flavored markdown.
//
// Required: true
Content *string `json:"content"`
// The time at which this comment was created.
//
// This field is autogenerated when the content is posted.
// Read Only: true
// Format: date-time
CreatedAt strfmt.DateTime `json:"createdAt,omitempty"`
// user
// Required: true
User *UserCard `json:"user"`
}
// Validate validates this comment
func (m *Comment) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateContent(formats); err != nil {
res = append(res, err)
}
if err := m.validateCreatedAt(formats); err != nil {
res = append(res, err)
}
if err := m.validateUser(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Comment) validateContent(formats strfmt.Registry) error {
if err := validate.Required("content", "body", m.Content); err != nil {
return err
}
return nil
}
func (m *Comment) validateCreatedAt(formats strfmt.Registry) error {
if swag.IsZero(m.CreatedAt) { // not required
return nil
}
if err := validate.FormatOf("createdAt", "body", "date-time", m.CreatedAt.String(), formats); err != nil {
return err
}
return nil
}
func (m *Comment) validateUser(formats strfmt.Registry) error {
if err := validate.Required("user", "body", m.User); err != nil {
return err
}
if m.User != nil {
if err := m.User.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("user")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *Comment) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Comment) UnmarshalBinary(b []byte) error {
var res Comment
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。