mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
17 lines
431 B
Go
17 lines
431 B
Go
// Code generated from Pkl module `orm`. DO NOT EDIT.
|
|
package orm
|
|
|
|
type Asset struct {
|
|
Id string `pkl:"id" json:"id,omitempty" query:"id"`
|
|
|
|
Name string `pkl:"name" json:"name,omitempty"`
|
|
|
|
Symbol string `pkl:"symbol" json:"symbol,omitempty"`
|
|
|
|
Decimals int `pkl:"decimals" json:"decimals,omitempty"`
|
|
|
|
ChainCode uint `pkl:"chainCode" json:"chainCode,omitempty"`
|
|
|
|
CreatedAt *string `pkl:"createdAt" json:"createdAt,omitempty"`
|
|
}
|