github.com/koko1123/flow-go-1@v0.29.6/engine/access/rest/models/model_account.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 type Account struct { 12 Address string `json:"address"` 13 // Flow balance of the account. 14 Balance string `json:"balance"` 15 Keys []AccountPublicKey `json:"keys,omitempty"` 16 Contracts map[string]string `json:"contracts,omitempty"` 17 Expandable *AccountExpandable `json:"_expandable"` 18 Links *Links `json:"_links,omitempty"` 19 }