1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00
documize/model/block/block.go

34 lines
1.2 KiB
Go
Raw Normal View History

2017-08-01 11:33:16 +01:00
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
package block
import "github.com/documize/community/model"
// Block represents a section that has been published as a reusable content block.
type Block struct {
model.BaseEntity
OrgID string `json:"orgId"`
2018-09-18 20:55:40 +01:00
SpaceID string `json:"folderId"`
2017-08-01 11:33:16 +01:00
UserID string `json:"userId"`
ContentType string `json:"contentType"`
2018-09-19 16:03:29 +01:00
Type string `json:"pageType"`
2018-09-18 20:55:40 +01:00
Name string `json:"title"`
2017-08-01 11:33:16 +01:00
Body string `json:"body"`
Excerpt string `json:"excerpt"`
RawBody string `json:"rawBody"` // a blob of data
Config string `json:"config"` // JSON based custom config for this type
ExternalSource bool `json:"externalSource"` // true indicates data sourced externally
Used uint64 `json:"used"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
}