gitlab.com/evatix-go/core@v1.3.55/coredata/corepayload/BytesCreateInstruction.go (about)

     1  package corepayload
     2  
     3  type BytesCreateInstruction struct {
     4  	Name, Identifier string
     5  	TaskTypeName     string
     6  	EntityType       string // for any type no need to entity type it will be collected by reflection.
     7  	CategoryName     string
     8  	HasManyRecords   bool
     9  	Payloads         []byte
    10  	Attributes       *Attributes
    11  }