mirror of https://github.com/vernonkeenan/lib
82 lines
1.7 KiB
Go
82 lines
1.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/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// Event event
|
|
//
|
|
// swagger:model Event
|
|
type Event struct {
|
|
|
|
// capacity
|
|
Capacity *int64 `json:"Capacity,omitempty"`
|
|
|
|
// createdat
|
|
Createdat *string `json:"Createdat,omitempty"`
|
|
|
|
// description
|
|
Description *string `json:"Description,omitempty"`
|
|
|
|
// end date
|
|
EndDate string `json:"EndDate,omitempty"`
|
|
|
|
// ID
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// location
|
|
Location string `json:"Location,omitempty"`
|
|
|
|
// organizeruser ID
|
|
OrganizeruserID string `json:"OrganizeruserID,omitempty"`
|
|
|
|
// start date
|
|
StartDate string `json:"StartDate,omitempty"`
|
|
|
|
// title
|
|
Title string `json:"Title,omitempty"`
|
|
|
|
// up datedat
|
|
UpDatedat *string `json:"UpDatedat,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
|
|
}
|