// 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/strfmt" "github.com/go-openapi/swag/jsonutils" ) // TrackEvent An immutable governed association between a tenant-bounded Track and Event. Both relationship keys and all identity and audit fields are immutable after creation. // // swagger:model TrackEvent type TrackEvent struct { // created by ID CreatedByID *string `json:"CreatedByID,omitempty"` // created date CreatedDate *string `json:"CreatedDate,omitempty"` // event ID EventID string `json:"EventID,omitempty"` // ID ID string `json:"ID,omitempty"` // last modified by ID LastModifiedByID *string `json:"LastModifiedByID,omitempty"` // last modified date LastModifiedDate *string `json:"LastModifiedDate,omitempty"` // track ID TrackID string `json:"TrackID,omitempty"` } // Validate validates this track event func (m *TrackEvent) Validate(formats strfmt.Registry) error { return nil } // ContextValidate validates this track event based on context it is used func (m *TrackEvent) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *TrackEvent) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return jsonutils.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *TrackEvent) UnmarshalBinary(b []byte) error { var res TrackEvent if err := jsonutils.ReadJSON(b, &res); err != nil { return err } *m = res return nil }