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
2023-04-15 14:27:18 +00:00
AccountID *string `json:"AccountID,omitempty"`
2022-09-05 00:01:32 +00:00
2023-03-28 17:47:34 +00:00
// The ID of the Product being analyzed
2023-04-15 14:27:18 +00:00
CompanyProductID *string `json:"CompanyProductID,omitempty"`
2023-03-28 17:47:34 +00:00
2022-09-05 00:01:32 +00:00
// 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
2022-09-07 00:16:25 +00:00
// Notes concerning data collection
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2022-09-07 00:16:25 +00:00
// The ID of the Factor that owns this Observation
2023-04-15 14:27:18 +00:00
FactorID *string `json:"FactorID,omitempty"`
2022-09-05 00:01:32 +00:00
2023-03-28 17:47:34 +00:00
// Record Id
2022-09-05 00:01:32 +00:00
ID string `json:"ID,omitempty"`
// 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-07 00:16:25 +00:00
// Is the subject a Company or a Product?
2023-04-15 14:27:18 +00:00
SubjectType *string `json:"SubjectType,omitempty"`
2022-09-07 00:16:25 +00:00
// The data point collected
2023-04-15 14:27:18 +00:00
Value *string `json:"Value,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
}