2022-09-05 00:01:32 +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 research_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"
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
"github.com/go-openapi/errors"
|
2022-09-05 00:01:32 +00:00
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CompanyProduct A software product or service vended by a Company
|
|
|
|
//
|
|
|
|
// swagger:model CompanyProduct
|
|
|
|
type CompanyProduct struct {
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// ID of the Company that owns this Product
|
2022-09-05 00:01:32 +00:00
|
|
|
AccountID string `json:"AccountID,omitempty"`
|
|
|
|
|
|
|
|
// Created By User ID
|
|
|
|
CreatedByID string `json:"CreatedByID,omitempty"`
|
|
|
|
|
|
|
|
// Created Date
|
|
|
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
|
|
|
|
|
|
|
// Description of product
|
|
|
|
Description string `json:"Description,omitempty"`
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Full Description of product
|
|
|
|
FullDescription string `json:"FullDescription,omitempty"`
|
|
|
|
|
|
|
|
// Record Id
|
2022-09-05 00:01:32 +00:00
|
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
// Image Alt Text
|
|
|
|
ImageAltText string `json:"ImageAltText,omitempty"`
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Image URL
|
|
|
|
ImageURL string `json:"ImageURL,omitempty"`
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
// industries
|
|
|
|
Industries *CompanyProductIndustries `json:"Industries,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
2022-09-05 00:01:32 +00:00
|
|
|
// Last Modified By User ID
|
|
|
|
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
|
|
|
|
|
|
|
|
// Last Modified Date
|
|
|
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Logo
|
|
|
|
Logo string `json:"Logo,omitempty"`
|
|
|
|
|
2022-09-05 00:01:32 +00:00
|
|
|
// Product Name
|
|
|
|
Name string `json:"Name,omitempty"`
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
// Product Video ID
|
|
|
|
ProductVideoID string `json:"ProductVideoID,omitempty"`
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Published
|
|
|
|
Published bool `json:"Published,omitempty"`
|
|
|
|
|
|
|
|
// Salesforce Specific
|
|
|
|
SalesforceSpecific bool `json:"SalesforceSpecific,omitempty"`
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
// Slug
|
|
|
|
Slug string `json:"Slug,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
2022-09-05 00:01:32 +00:00
|
|
|
// TagLine
|
|
|
|
TagLine string `json:"TagLine,omitempty"`
|
|
|
|
|
|
|
|
// Website
|
|
|
|
URL string `json:"URL,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this company product
|
|
|
|
func (m *CompanyProduct) Validate(formats strfmt.Registry) error {
|
2023-04-01 23:56:22 +00:00
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.validateIndustries(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CompanyProduct) validateIndustries(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.Industries) { // not required
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.Industries != nil {
|
|
|
|
if err := m.Industries.Validate(formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName("Industries")
|
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName("Industries")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-05 00:01:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-01 23:56:22 +00:00
|
|
|
// ContextValidate validate this company product based on the context it is used
|
2022-09-05 00:01:32 +00:00
|
|
|
func (m *CompanyProduct) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
2023-04-01 23:56:22 +00:00
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.contextValidateIndustries(ctx, formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CompanyProduct) contextValidateIndustries(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if m.Industries != nil {
|
|
|
|
if err := m.Industries.ContextValidate(ctx, formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName("Industries")
|
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName("Industries")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-05 00:01:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *CompanyProduct) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *CompanyProduct) UnmarshalBinary(b []byte) error {
|
|
|
|
var res CompanyProduct
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|
2023-04-01 23:56:22 +00:00
|
|
|
|
|
|
|
// CompanyProductIndustries Industries
|
|
|
|
//
|
|
|
|
// swagger:model CompanyProductIndustries
|
|
|
|
type CompanyProductIndustries struct {
|
|
|
|
|
|
|
|
// items
|
|
|
|
Items *Industry `json:"items,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this company product industries
|
|
|
|
func (m *CompanyProductIndustries) Validate(formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.validateItems(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CompanyProductIndustries) validateItems(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.Items) { // not required
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.Items != nil {
|
|
|
|
if err := m.Items.Validate(formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName("Industries" + "." + "items")
|
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName("Industries" + "." + "items")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validate this company product industries based on the context it is used
|
|
|
|
func (m *CompanyProductIndustries) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.contextValidateItems(ctx, formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CompanyProductIndustries) contextValidateItems(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if m.Items != nil {
|
|
|
|
if err := m.Items.ContextValidate(ctx, formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName("Industries" + "." + "items")
|
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName("Industries" + "." + "items")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *CompanyProductIndustries) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *CompanyProductIndustries) UnmarshalBinary(b []byte) error {
|
|
|
|
var res CompanyProductIndustries
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|