lib/api/research/research_models/observation.go

85 lines
2.1 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 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"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
2022-09-07 00:16:25 +00:00
// Observation A data point collected while analyzing a Factor
2022-09-05 00:01:32 +00:00
//
2022-09-07 00:16:25 +00:00
// swagger:model Observation
type Observation struct {
2022-09-05 00:01:32 +00:00
2022-09-07 00:16:25 +00:00
// The ID of the Company being analyzed
AccountID string `json:"AccountID,omitempty"`
2022-09-05 00:01:32 +00:00
// Created By User ID
CreatedByID string `json:"CreatedByID,omitempty"`
// Created Date
CreatedDate string `json:"CreatedDate,omitempty"`
2022-09-07 00:16:25 +00:00
// Notes concerning data collection
Description string `json:"Description,omitempty"`
// The ID of the Factor that owns this Observation
FactorID string `json:"FactorID,omitempty"`
2022-09-05 00:01:32 +00:00
// Taxnexus Record Id
ID string `json:"ID,omitempty"`
// Last Modified By User ID
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
// Last Modified Date
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
2022-09-07 00:16:25 +00:00
// Is the subject a Company or a Product?
SubjectType interface{} `json:"SubjectType,omitempty"`
// The data point collected
Value string `json:"Value,omitempty"`
// The ID of the Product being analyzed
CompanyProductID string `json:"companyProductID,omitempty"`
2022-09-05 00:01:32 +00:00
}
2022-09-07 00:16:25 +00:00
// Validate validates this observation
func (m *Observation) Validate(formats strfmt.Registry) error {
2022-09-05 00:01:32 +00:00
return nil
}
2022-09-07 00:16:25 +00:00
// ContextValidate validates this observation based on context it is used
func (m *Observation) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
2022-09-05 00:01:32 +00:00
return nil
}
// MarshalBinary interface implementation
2022-09-07 00:16:25 +00:00
func (m *Observation) MarshalBinary() ([]byte, error) {
2022-09-05 00:01:32 +00:00
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
2022-09-07 00:16:25 +00:00
func (m *Observation) UnmarshalBinary(b []byte) error {
var res Observation
2022-09-05 00:01:32 +00:00
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}