mirror of https://github.com/vernonkeenan/lib
169 lines
3.7 KiB
Go
169 lines
3.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
|
|
|
|
// 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"
|
|
)
|
|
|
|
// Event event
|
|
//
|
|
// swagger:model event
|
|
type Event struct {
|
|
|
|
// account ID
|
|
AccountID *string `json:"AccountID,omitempty"`
|
|
|
|
// capacity
|
|
Capacity *int64 `json:"Capacity,omitempty"`
|
|
|
|
// created by ID
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
|
|
|
// created date
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
// description
|
|
Description *string `json:"Description,omitempty"`
|
|
|
|
// end date
|
|
EndDate *string `json:"EndDate,omitempty"`
|
|
|
|
// event category
|
|
EventCategory *EventCategory `json:"EventCategory,omitempty"`
|
|
|
|
// event category ID
|
|
EventCategoryID *string `json:"EventCategoryID,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"`
|
|
|
|
// location
|
|
Location *string `json:"Location,omitempty"`
|
|
|
|
// logo
|
|
Logo *string `json:"Logo,omitempty"`
|
|
|
|
// online
|
|
Online *bool `json:"Online,omitempty"`
|
|
|
|
// organizer user ID
|
|
OrganizerUserID *string `json:"OrganizerUserID,omitempty"`
|
|
|
|
// reg URL
|
|
RegURL *string `json:"RegURL,omitempty"`
|
|
|
|
// slug
|
|
Slug *string `json:"Slug,omitempty"`
|
|
|
|
// start date
|
|
StartDate *string `json:"StartDate,omitempty"`
|
|
|
|
// title
|
|
Title *string `json:"Title,omitempty"`
|
|
}
|
|
|
|
// Validate validates this event
|
|
func (m *Event) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateEventCategory(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Event) validateEventCategory(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.EventCategory) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.EventCategory != nil {
|
|
if err := m.EventCategory.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("EventCategory")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("EventCategory")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this event based on the context it is used
|
|
func (m *Event) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateEventCategory(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Event) contextValidateEventCategory(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.EventCategory != nil {
|
|
if err := m.EventCategory.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("EventCategory")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("EventCategory")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Event) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Event) UnmarshalBinary(b []byte) error {
|
|
var res Event
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|