mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
// Code generated from Pkl module `transactions`. DO NOT EDIT.
|
|
package transactions
|
|
|
|
import "github.com/apple/pkl-go/pkl"
|
|
|
|
type MsgStakingBeginRedelegate interface {
|
|
Msg
|
|
|
|
GetDelegatorAddress() string
|
|
|
|
GetValidatorSrcAddress() string
|
|
|
|
GetValidatorDstAddress() string
|
|
|
|
GetAmount() *pkl.Object
|
|
}
|
|
|
|
var _ MsgStakingBeginRedelegate = (*MsgStakingBeginRedelegateImpl)(nil)
|
|
|
|
type MsgStakingBeginRedelegateImpl struct {
|
|
// The type URL for the message
|
|
TypeUrl string `pkl:"typeUrl"`
|
|
|
|
DelegatorAddress string `pkl:"delegatorAddress"`
|
|
|
|
ValidatorSrcAddress string `pkl:"validatorSrcAddress"`
|
|
|
|
ValidatorDstAddress string `pkl:"validatorDstAddress"`
|
|
|
|
Amount *pkl.Object `pkl:"amount"`
|
|
}
|
|
|
|
// The type URL for the message
|
|
func (rcv *MsgStakingBeginRedelegateImpl) GetTypeUrl() string {
|
|
return rcv.TypeUrl
|
|
}
|
|
|
|
func (rcv *MsgStakingBeginRedelegateImpl) GetDelegatorAddress() string {
|
|
return rcv.DelegatorAddress
|
|
}
|
|
|
|
func (rcv *MsgStakingBeginRedelegateImpl) GetValidatorSrcAddress() string {
|
|
return rcv.ValidatorSrcAddress
|
|
}
|
|
|
|
func (rcv *MsgStakingBeginRedelegateImpl) GetValidatorDstAddress() string {
|
|
return rcv.ValidatorDstAddress
|
|
}
|
|
|
|
func (rcv *MsgStakingBeginRedelegateImpl) GetAmount() *pkl.Object {
|
|
return rcv.Amount
|
|
}
|