lib/api/members/members_models/template.go

101 lines
2.2 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
2023-04-15 14:27:18 +00:00
CompanyID *string `json:"CompanyID,omitempty"`
2021-07-31 03:05:02 +00:00
// created by ID
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// created date
2023-04-15 14:27:18 +00:00
CreatedDate *string `json:"CreatedDate,omitempty"`
2021-07-31 03:05:02 +00:00
// Description
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2021-07-31 03:05:02 +00:00
// 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?
2023-04-15 14:27:18 +00:00
IsActive *bool `json:"IsActive,omitempty"`
2021-07-31 03:05:02 +00:00
// Master Template?
2023-04-15 14:27:18 +00:00
IsMaster *bool `json:"IsMaster,omitempty"`
2021-07-31 03:05:02 +00:00
// last modified by ID
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// last modified date
2023-04-15 14:27:18 +00:00
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
2021-07-31 03:05:02 +00:00
// Template Name
2023-04-15 14:27:18 +00:00
Name *string `json:"Name,omitempty"`
2021-07-31 03:05:02 +00:00
// Object
2023-04-15 14:27:18 +00:00
ObjectType *string `json:"ObjectType,omitempty"`
2021-07-31 03:05:02 +00:00
// Record Type Name
2023-04-15 14:27:18 +00:00
RecordTypeName *string `json:"RecordTypeName,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant that owns this object instance
2023-04-15 14:27:18 +00:00
TenantID *string `json:"TenantID,omitempty"`
2021-07-31 03:05:02 +00:00
// Type
2023-04-15 14:27:18 +00:00
Type *string `json:"Type,omitempty"`
2021-07-31 03:05:02 +00:00
// URL
2023-04-15 14:27:18 +00:00
URL *string `json:"URL,omitempty"`
2021-07-31 03:05:02 +00:00
}
// 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
}