Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 4.6 KB

GovChainInfoResponse.md

File metadata and controls

156 lines (83 loc) · 4.6 KB

GovChainInfoResponse

Properties

Name Type Description Notes
ChainID string ChainID (Bech32-encoded).
ChainOwnerId string The chain owner address (Bech32-encoded).
GasFeePolicy FeePolicy
GasLimits Limits
Metadata GovPublicChainMetadata
PublicURL string The fully qualified public url leading to the chains metadata

Methods

NewGovChainInfoResponse

func NewGovChainInfoResponse(chainID string, chainOwnerId string, gasFeePolicy FeePolicy, gasLimits Limits, metadata GovPublicChainMetadata, publicURL string, ) *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.

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.

GetMetadata

func (o *GovChainInfoResponse) GetMetadata() GovPublicChainMetadata

GetMetadata returns the Metadata field if non-nil, zero value otherwise.

GetMetadataOk

func (o *GovChainInfoResponse) GetMetadataOk() (*GovPublicChainMetadata, bool)

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

SetMetadata

func (o *GovChainInfoResponse) SetMetadata(v GovPublicChainMetadata)

SetMetadata sets Metadata field to given value.

GetPublicURL

func (o *GovChainInfoResponse) GetPublicURL() string

GetPublicURL returns the PublicURL field if non-nil, zero value otherwise.

GetPublicURLOk

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

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

SetPublicURL

func (o *GovChainInfoResponse) SetPublicURL(v string)

SetPublicURL sets PublicURL field to given value.

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