lib/api/workflow/workflow_models/app_log.go

85 lines
1.8 KiB
Go

// 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 workflow_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"
)
// AppLog Application Log for human consumption
//
// swagger:model AppLog
type AppLog struct {
// account ID
AccountID string `json:"AccountID,omitempty"`
// company ID
CompanyID string `json:"CompanyID,omitempty"`
// created by ID
CreatedByID string `json:"CreatedByID,omitempty"`
// created date
CreatedDate string `json:"CreatedDate,omitempty"`
// ID
ID string `json:"ID,omitempty"`
// message
Message string `json:"Message,omitempty"`
// object ID
ObjectID string `json:"ObjectID,omitempty"`
// object type
ObjectType string `json:"ObjectType,omitempty"`
// severity
Severity string `json:"Severity,omitempty"`
// source
Source string `json:"Source,omitempty"`
// source timestamp
SourceTimestamp string `json:"SourceTimestamp,omitempty"`
}
// Validate validates this app log
func (m *AppLog) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this app log based on context it is used
func (m *AppLog) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *AppLog) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AppLog) UnmarshalBinary(b []byte) error {
var res AppLog
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}