lib/api/sfgate/sfgate_models/event.go

109 lines
2.3 KiB
Go
Raw Normal View History

2023-04-30 02:07:31 +00:00
// 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"
"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"`
// 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 {
return nil
}
// ContextValidate validates this event based on context it is used
func (m *Event) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
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
}