Files
sonr/pkg/orm/Account.pkl.go
T

21 lines
555 B
Go
Raw Normal View History

2024-09-30 19:44:16 -04:00
// Code generated from Pkl module `orm`. DO NOT EDIT.
2024-09-19 02:04:22 -04:00
package orm
2024-09-18 02:22:17 -04:00
type Account struct {
Id string `pkl:"id" json:"id,omitempty" query:"id"`
Name string `pkl:"name" json:"name,omitempty"`
Address any `pkl:"address" json:"address,omitempty"`
PublicKey string `pkl:"publicKey" json:"publicKey,omitempty"`
ChainCode uint `pkl:"chainCode" json:"chainCode,omitempty"`
Index int `pkl:"index" json:"index,omitempty"`
Controller string `pkl:"controller" json:"controller,omitempty"`
CreatedAt *string `pkl:"createdAt" json:"createdAt,omitempty"`
}