mirror of https://github.com/vernonkeenan/lib
166 lines
3.6 KiB
Go
166 lines
3.6 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 sfgate_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"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// Course course
|
|
//
|
|
// swagger:model course
|
|
type Course struct {
|
|
|
|
// created by ID
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
|
|
|
// created date
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
// description
|
|
Description *string `json:"Description,omitempty"`
|
|
|
|
// fulldescription
|
|
Fulldescription *string `json:"Fulldescription,omitempty"`
|
|
|
|
// ID
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// image alt text
|
|
ImageAltText *string `json:"ImageAltText,omitempty"`
|
|
|
|
// image URL
|
|
ImageURL *string `json:"ImageURL,omitempty"`
|
|
|
|
// instructor ID
|
|
InstructorID *string `json:"InstructorID,omitempty"`
|
|
|
|
// last modified by ID
|
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
|
|
|
// last modified date
|
|
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
|
|
|
|
// logo
|
|
Logo *string `json:"Logo,omitempty"`
|
|
|
|
// price
|
|
Price *float64 `json:"Price,omitempty"`
|
|
|
|
// sections
|
|
Sections []*CourseSection `json:"Sections"`
|
|
|
|
// slug
|
|
Slug *string `json:"Slug,omitempty"`
|
|
|
|
// template ID
|
|
TemplateID *string `json:"TemplateID,omitempty"`
|
|
|
|
// title
|
|
Title *string `json:"Title,omitempty"`
|
|
}
|
|
|
|
// Validate validates this course
|
|
func (m *Course) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateSections(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Course) validateSections(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Sections) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(m.Sections); i++ {
|
|
if swag.IsZero(m.Sections[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Sections[i] != nil {
|
|
if err := m.Sections[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("Sections" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("Sections" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this course based on the context it is used
|
|
func (m *Course) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateSections(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Course) contextValidateSections(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Sections); i++ {
|
|
|
|
if m.Sections[i] != nil {
|
|
if err := m.Sections[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("Sections" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("Sections" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Course) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Course) UnmarshalBinary(b []byte) error {
|
|
var res Course
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|