32 lines
770 B
Go
32 lines
770 B
Go
|
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
|
||
|
}
|