lib/types/folder.go

32 lines
770 B
Go
Raw Permalink Normal View History

2021-01-10 18:40:46 +00:00
package types
import (
"database/sql"
)
// Folder is a first class object type
type Folder struct {
AccessType string
ChildRecordID string
ContentOfFolderID string
ContentSize int
CreatedByID string
CreatedDate sql.NullTime
DeveloperName string
EnableFolderStatus string
FileExtension string
FileType string
ID string
IsFolder bool
IsReadonly bool
LastModifiedByID string
LastModifiedDate sql.NullTime
Name string
NamespacePrefix string
ParentContentFolderID string
ParentEntityID string
ParentID string
Title string
Type string
}