github.com/cyverse/go-irodsclient@v0.13.2/irods/types/object_type.go (about)

     1  package types
     2  
     3  type ObjectType string
     4  
     5  const (
     6  	// ObjectTypeDataObject is for DataObject
     7  	ObjectTypeDataObject ObjectType = "data"
     8  	// ObjectTypeCollection is for Collection
     9  	ObjectTypeCollection ObjectType = "collection"
    10  )