Skip to content

Latest commit

 

History

History
140 lines (75 loc) · 4.18 KB

GovChainInfoResponse.md

File metadata and controls

140 lines (75 loc) · 4.18 KB

GovChainInfoResponse

Properties

Name Type Description Notes
ChainID string ChainID (Bech32-encoded).
ChainOwnerId string The chain owner address (Bech32-encoded).
CustomMetadata Pointer to string (base64) Optional extra metadata that is appended to the L1 AliasOutput [optional]
GasFeePolicy FeePolicy
GasLimits Limits

Methods

NewGovChainInfoResponse

func NewGovChainInfoResponse(chainID string, chainOwnerId string, gasFeePolicy FeePolicy, gasLimits Limits, ) *GovChainInfoResponse

NewGovChainInfoResponse instantiates a new GovChainInfoResponse 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

NewGovChainInfoResponseWithDefaults

func NewGovChainInfoResponseWithDefaults() *GovChainInfoResponse

NewGovChainInfoResponseWithDefaults instantiates a new GovChainInfoResponse 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

GetChainID

func (o *GovChainInfoResponse) GetChainID() string

GetChainID returns the ChainID field if non-nil, zero value otherwise.

GetChainIDOk

func (o *GovChainInfoResponse) GetChainIDOk() (*string, bool)

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

SetChainID

func (o *GovChainInfoResponse) SetChainID(v string)

SetChainID sets ChainID field to given value.

GetChainOwnerId

func (o *GovChainInfoResponse) GetChainOwnerId() string

GetChainOwnerId returns the ChainOwnerId field if non-nil, zero value otherwise.

GetChainOwnerIdOk

func (o *GovChainInfoResponse) GetChainOwnerIdOk() (*string, bool)

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

SetChainOwnerId

func (o *GovChainInfoResponse) SetChainOwnerId(v string)

SetChainOwnerId sets ChainOwnerId field to given value.

GetCustomMetadata

func (o *GovChainInfoResponse) GetCustomMetadata() string

GetCustomMetadata returns the CustomMetadata field if non-nil, zero value otherwise.

GetCustomMetadataOk

func (o *GovChainInfoResponse) GetCustomMetadataOk() (*string, bool)

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

SetCustomMetadata

func (o *GovChainInfoResponse) SetCustomMetadata(v string)

SetCustomMetadata sets CustomMetadata field to given value.

HasCustomMetadata

func (o *GovChainInfoResponse) HasCustomMetadata() bool

HasCustomMetadata returns a boolean if a field has been set.

GetGasFeePolicy

func (o *GovChainInfoResponse) GetGasFeePolicy() FeePolicy

GetGasFeePolicy returns the GasFeePolicy field if non-nil, zero value otherwise.

GetGasFeePolicyOk

func (o *GovChainInfoResponse) GetGasFeePolicyOk() (*FeePolicy, bool)

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

SetGasFeePolicy

func (o *GovChainInfoResponse) SetGasFeePolicy(v FeePolicy)

SetGasFeePolicy sets GasFeePolicy field to given value.

GetGasLimits

func (o *GovChainInfoResponse) GetGasLimits() Limits

GetGasLimits returns the GasLimits field if non-nil, zero value otherwise.

GetGasLimitsOk

func (o *GovChainInfoResponse) GetGasLimitsOk() (*Limits, bool)

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

SetGasLimits

func (o *GovChainInfoResponse) SetGasLimits(v Limits)

SetGasLimits sets GasLimits field to given value.

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