github.com/koko1123/flow-go-1@v0.29.6/engine/access/rest/models/model_block_events.go (about) 1 /* 2 * Access API 3 * 4 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 5 * 6 * API version: 1.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 package models 10 11 import ( 12 "time" 13 ) 14 15 type BlockEvents struct { 16 BlockId string `json:"block_id,omitempty"` 17 BlockHeight string `json:"block_height,omitempty"` 18 BlockTimestamp time.Time `json:"block_timestamp,omitempty"` 19 Events []Event `json:"events,omitempty"` 20 Links *Links `json:"_links,omitempty"` 21 }