Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.44 KB

CreateUnstakeActivityExtra.md

File metadata and controls

72 lines (39 loc) · 2.44 KB

CreateUnstakeActivityExtra

Properties

Name Type Description Notes
PoolType StakingPoolType
ValidatorPubkeys []string A list of public keys identifying the validators to unstake from the Ethereum Beacon Chain.

Methods

NewCreateUnstakeActivityExtra

func NewCreateUnstakeActivityExtra(poolType StakingPoolType, validatorPubkeys []string, ) *CreateUnstakeActivityExtra

NewCreateUnstakeActivityExtra instantiates a new CreateUnstakeActivityExtra object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewCreateUnstakeActivityExtraWithDefaults

func NewCreateUnstakeActivityExtraWithDefaults() *CreateUnstakeActivityExtra

NewCreateUnstakeActivityExtraWithDefaults instantiates a new CreateUnstakeActivityExtra object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetPoolType

func (o *CreateUnstakeActivityExtra) GetPoolType() StakingPoolType

GetPoolType returns the PoolType field if non-nil, zero value otherwise.

GetPoolTypeOk

func (o *CreateUnstakeActivityExtra) GetPoolTypeOk() (*StakingPoolType, bool)

GetPoolTypeOk returns a tuple with the PoolType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPoolType

func (o *CreateUnstakeActivityExtra) SetPoolType(v StakingPoolType)

SetPoolType sets PoolType field to given value.

GetValidatorPubkeys

func (o *CreateUnstakeActivityExtra) GetValidatorPubkeys() []string

GetValidatorPubkeys returns the ValidatorPubkeys field if non-nil, zero value otherwise.

GetValidatorPubkeysOk

func (o *CreateUnstakeActivityExtra) GetValidatorPubkeysOk() (*[]string, bool)

GetValidatorPubkeysOk returns a tuple with the ValidatorPubkeys field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetValidatorPubkeys

func (o *CreateUnstakeActivityExtra) SetValidatorPubkeys(v []string)

SetValidatorPubkeys sets ValidatorPubkeys field to given value.

[Back to Model list] [Back to API list] [Back to README]