mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +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"`
|
|
}
|