| 284 | } |
| 285 | |
| 286 | type Block struct { |
| 287 | OID string `json:"oid"` |
| 288 | ParentORef string `json:"parentoref,omitempty"` |
| 289 | Version int `json:"version"` |
| 290 | RuntimeOpts *RuntimeOpts `json:"runtimeopts,omitempty"` |
| 291 | Stickers []*StickerType `json:"stickers,omitempty"` |
| 292 | Meta MetaMapType `json:"meta"` |
| 293 | SubBlockIds []string `json:"subblockids,omitempty"` |
| 294 | JobId string `json:"jobid,omitempty"` // if set, the block will render this jobid's pty output |
| 295 | } |
| 296 | |
| 297 | func (*Block) GetOType() string { |
| 298 | return OType_Block |
nothing calls this directly
no outgoing calls
no test coverage detected