-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodel_e_block_long.go
28 lines (26 loc) · 1.05 KB
/
model_e_block_long.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Harmony Connect
*
* An easy to use API that helps you access the Factom blockchain.
*
* API version: 1.0.19
* Contact: harmony-support@factom.com
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package connectclient
type EBlockLong struct {
// The Key Merkle Root for this entry block.
Keymr string `json:"keymr"`
// Shows where this entry block falls within the list of entry blocks that are contained in the parent directory block.
Sequence int32 `json:"sequence"`
Prev EBlockLongPrev `json:"prev,omitempty"`
Next EBlockLongNext `json:"next,omitempty"`
Chain EBlockShortChain `json:"chain"`
Dblock EBlockShortDblock `json:"dblock"`
// The timestamp for when this block was built. Sent in [ISO 8601 Format](https://en.wikipedia.org/wiki/ISO_8601). For example: `YYYY-MM-DDThh:mm:ssZ`
StartedAt map[string]interface{} `json:"started_at"`
// An API link to retrieve all information about this entry block.
Href string `json:"href"`
// An API link to all of the entries in this entry block.
Entries string `json:"entries"`
}