lib/api/members/members_models/template.go

101 lines
2.1 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-04-07 18:00:15 +00:00
package members_models
2021-07-31 03:05:02 +00:00
// 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"
)
// Template template
//
// swagger:model Template
type Template struct {
// Company
CompanyID string `json:"CompanyID,omitempty"`
// created by ID
CreatedByID string `json:"CreatedByID,omitempty"`
// created date
CreatedDate string `json:"CreatedDate,omitempty"`
// Description
Description string `json:"Description,omitempty"`
// HTML Body
// Format: byte
HTML strfmt.Base64 `json:"HTML,omitempty"`
2023-03-28 17:47:34 +00:00
// Record Id
2021-07-31 03:05:02 +00:00
ID string `json:"ID,omitempty"`
// Active?
IsActive bool `json:"IsActive,omitempty"`
// Master Template?
IsMaster bool `json:"IsMaster,omitempty"`
// last modified by ID
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
// last modified date
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
// Template Name
Name string `json:"Name,omitempty"`
// Object
ObjectType string `json:"ObjectType,omitempty"`
// Record Type Name
RecordTypeName string `json:"RecordTypeName,omitempty"`
// Tenant that owns this object instance
TenantID string `json:"TenantID,omitempty"`
// Type
Type string `json:"Type,omitempty"`
// URL
URL string `json:"URL,omitempty"`
}
// Validate validates this template
func (m *Template) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this template based on context it is used
func (m *Template) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Template) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Template) UnmarshalBinary(b []byte) error {
var res Template
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}