mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
18 lines
423 B
Go
18 lines
423 B
Go
// Code generated from Pkl module `transactions`. DO NOT EDIT.
|
|||
|
|
package transactions
|
||
|
|
|
||
|
|
import "github.com/apple/pkl-go/pkl"
|
||
|
|
|
||
|
|
// Represents a transaction body
|
||
|
|
type TxBody struct {
|
||
|
|
Messages []Msg `pkl:"messages"`
|
||
|
|
|
||
|
|
Memo *string `pkl:"memo"`
|
||
|
|
|
||
|
|
TimeoutHeight *int `pkl:"timeoutHeight"`
|
||
|
|
|
||
|
|
ExtensionOptions *[]*pkl.Object `pkl:"extensionOptions"`
|
||
|
|
|
||
|
|
NonCriticalExtensionOptions *[]*pkl.Object `pkl:"nonCriticalExtensionOptions"`
|
||
|
|
}
|