lib/api/sfgate/sfgate_models/company_product.go

106 lines
2.4 KiB
Go
Raw Normal View History

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 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"
)
// CompanyProduct A software product or service vended by a Company
//
// swagger:model CompanyProduct
type CompanyProduct struct {
// 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
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2022-09-05 00:01:32 +00:00
// Created Date
2023-04-15 14:27:18 +00:00
CreatedDate *string `json:"CreatedDate,omitempty"`
2022-09-05 00:01:32 +00:00
// Description of product
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2022-09-05 00:01:32 +00:00
2023-03-28 17:47:34 +00:00
// Full Description of product
2023-04-15 14:27:18 +00:00
FullDescription *string `json:"FullDescription,omitempty"`
2023-03-28 17:47:34 +00:00
// Record Id
2022-09-05 00:01:32 +00:00
ID string `json:"ID,omitempty"`
// Image Alt Text
2023-04-15 14:27:18 +00:00
ImageAltText *string `json:"ImageAltText,omitempty"`
2023-03-28 17:47:34 +00:00
// Image URL
2023-04-15 14:27:18 +00:00
ImageURL *string `json:"ImageURL,omitempty"`
2023-03-28 17:47:34 +00:00
2022-09-05 00:01:32 +00:00
// Last Modified By User ID
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2022-09-05 00:01:32 +00:00
// Last Modified Date
2023-04-15 14:27:18 +00:00
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
2022-09-05 00:01:32 +00:00
2023-03-28 17:47:34 +00:00
// Logo
2023-04-15 14:27:18 +00:00
Logo *string `json:"Logo,omitempty"`
2023-03-28 17:47:34 +00:00
2022-09-05 00:01:32 +00:00
// Product Name
2023-04-15 14:27:18 +00:00
Name *string `json:"Name,omitempty"`
2022-09-05 00:01:32 +00:00
// Product Video ID
2023-04-15 14:27:18 +00:00
ProductVideoID *string `json:"ProductVideoID,omitempty"`
2023-03-28 17:47:34 +00:00
// Published
2023-04-15 14:27:18 +00:00
Published *bool `json:"Published,omitempty"`
2023-03-28 17:47:34 +00:00
// Salesforce Specific
2023-04-15 14:27:18 +00:00
SalesforceSpecific *bool `json:"SalesforceSpecific,omitempty"`
2023-03-28 17:47:34 +00:00
// Slug
2023-04-15 14:27:18 +00:00
Slug *string `json:"Slug,omitempty"`
2023-03-28 17:47:34 +00:00
2022-09-05 00:01:32 +00:00
// TagLine
2023-04-15 14:27:18 +00:00
TagLine *string `json:"TagLine,omitempty"`
2022-09-05 00:01:32 +00:00
// Website
2023-04-15 14:27:18 +00:00
URL *string `json:"URL,omitempty"`
2022-09-05 00:01:32 +00:00
}
// Validate validates this company product
func (m *CompanyProduct) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this company product based on context it is used
func (m *CompanyProduct) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
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
}