2023-03-28 17:47:34 +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 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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Favorite favorite
|
|
|
|
//
|
2023-05-13 16:46:48 +00:00
|
|
|
// swagger:model favorite
|
2023-03-28 17:47:34 +00:00
|
|
|
type Favorite struct {
|
|
|
|
|
|
|
|
// created by ID
|
2023-04-15 14:27:18 +00:00
|
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// created date
|
|
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
|
|
|
|
// description
|
2023-04-15 14:27:18 +00:00
|
|
|
Description *string `json:"Description,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
2023-04-30 02:07:31 +00:00
|
|
|
// favorite type
|
|
|
|
FavoriteType *string `json:"FavoriteType,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// ID
|
|
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
|
|
|
|
// last modified by ID
|
2023-04-15 14:27:18 +00:00
|
|
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// last modified date
|
|
|
|
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
|
|
|
|
|
|
|
|
// name
|
2023-04-15 14:27:18 +00:00
|
|
|
Name *string `json:"Name,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// path
|
2023-04-15 14:27:18 +00:00
|
|
|
Path *string `json:"Path,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// tenant ID
|
2023-04-15 14:27:18 +00:00
|
|
|
TenantID *string `json:"TenantID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// user ID
|
2023-04-15 14:27:18 +00:00
|
|
|
UserID *string `json:"UserID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this favorite
|
|
|
|
func (m *Favorite) Validate(formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validates this favorite based on context it is used
|
|
|
|
func (m *Favorite) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *Favorite) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *Favorite) UnmarshalBinary(b []byte) error {
|
|
|
|
var res Favorite
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|