mirror of https://github.com/vernonkeenan/lib
130 lines
2.7 KiB
Go
130 lines
2.7 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// (c) 2012-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package members_models
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag/jsonutils"
|
|
"github.com/go-openapi/swag/typeutils"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// CourseSection Estate-global section linked to one Course.
|
|
//
|
|
// swagger:model CourseSection
|
|
type CourseSection struct {
|
|
|
|
// content
|
|
Content *string `json:"Content,omitempty"`
|
|
|
|
// course ID
|
|
CourseID *string `json:"CourseID,omitempty"`
|
|
|
|
// created by ID
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
|
|
|
// created date
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
// ID
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// image alt text
|
|
ImageAltText *string `json:"ImageAltText,omitempty"`
|
|
|
|
// image URL
|
|
ImageURL *string `json:"ImageURL,omitempty"`
|
|
|
|
// last modified by ID
|
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
|
|
|
// last modified date
|
|
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
|
|
|
|
// logo
|
|
Logo *string `json:"Logo,omitempty"`
|
|
|
|
// order
|
|
Order *int64 `json:"Order,omitempty"`
|
|
|
|
// slug
|
|
// Max Length: 80
|
|
Slug *string `json:"Slug,omitempty"`
|
|
|
|
// title
|
|
// Max Length: 255
|
|
Title *string `json:"Title,omitempty"`
|
|
}
|
|
|
|
// Validate validates this course section
|
|
func (m *CourseSection) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateSlug(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateTitle(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CourseSection) validateSlug(formats strfmt.Registry) error {
|
|
if typeutils.IsZero(m.Slug) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.MaxLength("Slug", "body", *m.Slug, 80); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *CourseSection) validateTitle(formats strfmt.Registry) error {
|
|
if typeutils.IsZero(m.Title) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.MaxLength("Title", "body", *m.Title, 255); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this course section based on context it is used
|
|
func (m *CourseSection) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CourseSection) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return jsonutils.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CourseSection) UnmarshalBinary(b []byte) error {
|
|
var res CourseSection
|
|
if err := jsonutils.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|