celenium

package module
v1.10.17 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 13, 2024 License: MIT Imports: 20 Imported by: 0

README

Go API client for celenium

Celenium API is a powerful tool to access all blockchain data that is processed and indexed by our proprietary indexer. With Celenium API you can retrieve all historical data, off-chain data, blobs and statistics through our REST API. Celenium API indexer are open source, which allows you to not depend on third-party services. You can clone, build and run them independently, giving you full control over all components. If you have any questions or feature requests, please feel free to contact us. We appreciate your feedback!

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0
  • Package version: 1.0.0
  • Generator version: 7.11.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://discord.gg/3k83Przqk8

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import celenium "github.com/celenium-io/celenium-api-go"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value celenium.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), celenium.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value celenium.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), celenium.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using celenium.ContextOperationServerIndices and celenium.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), celenium.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), celenium.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api-mainnet.celenium.io/v1

Class Method HTTP request Description
AddressAPI AddressBlobs Get /address/{hash}/blobs Get blobs pushed by address
AddressAPI AddressDelegations Get /address/{hash}/delegations Get delegations made by address
AddressAPI AddressGrantee Get /address/{hash}/granters Get grants where address is grantee
AddressAPI AddressGrants Get /address/{hash}/grants Get grants made by address
AddressAPI AddressMessages Get /address/{hash}/messages Get address messages
AddressAPI AddressRedelegations Get /address/{hash}/redelegations Get redelegations made by address
AddressAPI AddressStats Get /address/{hash}/stats/{name}/{timeframe} Get address stats
AddressAPI AddressTransactions Get /address/{hash}/txs Get address transactions
AddressAPI AddressUndelegations Get /address/{hash}/undelegations Get undelegations made by address
AddressAPI AddressVesting Get /address/{hash}/vestings Get vesting for address
AddressAPI GetAddress Get /address/{hash} Get address info
AddressAPI GetAddressCount Get /address/count Get count of addresses in network
AddressAPI ListAddress Get /address List address info
BlockAPI BlockBlobsCount Get /block/{height}/blobs/count Count of blobs which was pushed by transaction
BlockAPI GetBlock Get /block/{height} Get block info
BlockAPI GetBlockBlobs Get /block/{height}/blobs List blobs which was pushed in the block
BlockAPI GetBlockCount Get /block/count Get count of blocks in network
BlockAPI GetBlockEvents Get /block/{height}/events Get events from begin and end of block
BlockAPI GetBlockMessages Get /block/{height}/messages Get messages contained in the block
BlockAPI GetBlockStats Get /block/{height}/stats Get block stats by height
BlockAPI ListBlock Get /block List blocks info
GasAPI GasEstimateForPfb Get /gas/estimate_for_pfb Get estimated gas for pay for blob
GasAPI GasPrice Get /gas/price Get estimated gas price
GeneralAPI GetConstants Get /constants Get network constants
GeneralAPI GetEnums Get /enums Get celenium enumerators
GeneralAPI Head Get /head Get current indexer head
NamespaceAPI GetBlob Post /blob Get namespace blob by commitment on height
NamespaceAPI GetBlobLogs Get /namespace/{id}/{version}/blobs Get blob changes for namespace
NamespaceAPI GetBlobMetadata Post /blob/metadata Get blob metadata by commitment on height
NamespaceAPI GetBlobProof Get /blob/proofs Get blob inclusion proofs
NamespaceAPI GetBlobs Get /blob List all blobs with filters
NamespaceAPI GetNamespace Get /namespace/{id} Get namespace info
NamespaceAPI GetNamespaceActive Get /namespace/active Get last used namespace
NamespaceAPI GetNamespaceBase64 Get /namespace_by_hash/{hash} Get namespace info by base64
NamespaceAPI GetNamespaceBlobs Get /namespace_by_hash/{hash}/{height} Get namespace blobs on height
NamespaceAPI GetNamespaceByVersionAndId Get /namespace/{id}/{version} Get namespace info by id and version
NamespaceAPI GetNamespaceCount Get /namespace/count Get count of namespaces in network
NamespaceAPI GetNamespaceMessages Get /namespace/{id}/{version}/messages Get namespace messages by id and version
NamespaceAPI GetNamespaceRollups Get /namespace/{id}/{version}/rollups List rollups using the namespace
NamespaceAPI ListNamespace Get /namespace List namespace info
RollupAPI GetRollup Get /rollup/{id} Get rollup info
RollupAPI GetRollupAllSeries Get /rollup/stats/series Get series for all rollups
RollupAPI GetRollupBlobs Get /rollup/{id}/blobs Get rollup blobs
RollupAPI GetRollupBySlug Get /rollup/slug/{slug} Get rollup by slug
RollupAPI GetRollupDistribution Get /rollup/{id}/distribution/{name}/{timeframe} Get rollup distribution
RollupAPI GetRollupNamespaces Get /rollup/{id}/namespaces Get rollup namespaces info
RollupAPI GetRollupStats Get /rollup/{id}/stats/{name}/{timeframe} Get rollup stats
RollupAPI GetRollupsCount Get /rollup/count Get count of rollups in network
RollupAPI ListRollup Get /rollup List rollups info
RollupAPI ListRollup24h Get /rollup/day List rollups info with stats by previous 24 hours
RollupAPI RollupExport Get /rollup/{id}/export Export rollup blobs
RollupAPI RollupGroupedStatistics Get /rollup/group Rollup Grouped Statistics
SearchAPI Search Get /search Search by hash
StatsAPI Stats24hChanges Get /stats/changes_24h Get changes for 24 hours
StatsAPI StatsMessagesCount24h Get /stats/messages_count_24h Get messages distribution for the last 24 hours
StatsAPI StatsNamespaceUsage Get /stats/namespace/usage Get namespaces with sorting by size.
StatsAPI StatsNsSeries Get /stats/namespace/series/{id}/{name}/{timeframe} Get histogram for namespace with precomputed stats
StatsAPI StatsPriceCurrent Get /stats/price/current Get current TIA price
StatsAPI StatsPriceSeries Get /stats/price/series/{timeframe} Get histogram with TIA price
StatsAPI StatsRollup24h Get /stats/rollup_stats_24h Get rollups stats for last 24 hours
StatsAPI StatsSeries Get /stats/series/{name}/{timeframe} Get histogram with precomputed stats
StatsAPI StatsSeriesCumulative Get /stats/series/{name}/{timeframe}/cumulative Get cumulative histogram with precomputed stats
StatsAPI StatsSquareSize Get /stats/square_size Get histogram for square size distribution
StatsAPI StatsStakingSeries Get /stats/staking/series/{id}/{name}/{timeframe} Get histogram for staking with precomputed stats
StatsAPI StatsSummary Get /stats/summary/{table}/{function} Get value by table and function
TransactionsAPI GetTransaction Get /tx/{hash} Get transaction by hash
TransactionsAPI GetTransactionEvents Get /tx/{hash}/events Get transaction events
TransactionsAPI GetTransactionMessages Get /tx/{hash}/messages Get transaction messages
TransactionsAPI GetTransactionsCount Get /tx/count Get count of transactions in network
TransactionsAPI ListGenesisTransactions Get /tx/genesis List genesis transactions info
TransactionsAPI ListTransactionBlobs Get /tx/{hash}/blobs List blobs which was pushed by transaction
TransactionsAPI ListTransactions Get /tx List transactions info
TransactionsAPI TransactionBlobsCount Get /tx/{hash}/blobs/count Count of blobs which was pushed by transaction
ValidatorAPI GetValidator Get /validators/{id} Get validator info
ValidatorAPI GetValidatorBlocks Get /validators/{id}/blocks Get blocks which was proposed by validator
ValidatorAPI GetValidatorUptime Get /validators/{id}/uptime Get validator's uptime and history of signed block
ValidatorAPI ListValidator Get /validators List validators
ValidatorAPI ValidatorCount Get /validators/count Get validator's count by status
ValidatorAPI ValidatorDelegators Get /validators/{id}/delegators Get validator's delegators
ValidatorAPI ValidatorJails Get /validators/{id}/jails Get validator's jails
VestingAPI GetVestingPeriods Get /vesting/{id}/periods Periods vesting periods by id

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

ApiKeyAuth
  • Type: API key
  • API key parameter name: apikey
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ApiKeyAuth and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		celenium.ContextAPIKeys,
		map[string]celenium.APIKey{
			"ApiKeyAuth": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

celenium@pklabs.me

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatusEnumValues = []GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus{
	"success",
	"failed",
}

All allowed values of GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus enum

View Source
var AllowedResponsesNamespaceKindEnumValues = []ResponsesNamespaceKind{
	"pay_for_blob",
	"tail_padding",
	"tx",
	"parity_shares",
	"primary_reserved_padding",
	"namespace",
}

All allowed values of ResponsesNamespaceKind enum

View Source
var AllowedTypesEventTypeEnumValues = []TypesEventType{
	"unknown",
	"coin_received",
	"coinbase",
	"coin_spent",
	"burn",
	"mint",
	"message",
	"proposer_reward",
	"rewards",
	"commission",
	"liveness",
	"transfer",
	"celestia.blob.v1.EventPayForBlobs",
	"redelegate",
	"AttestationRequest",
	"withdraw_rewards",
	"withdraw_commission",
	"set_withdraw_address",
	"create_validator",
	"delegate",
	"edit_validator",
	"unbond",
	"tx",
	"complete_redelegation",
	"complete_unbonding",
	"use_feegrant",
	"revoke_feegrant",
	"set_feegrant",
	"update_feegrant",
	"slash",
	"proposal_vote",
	"proposal_deposit",
	"submit_proposal",
	"cosmos.authz.v1beta1.EventGrant",
	"send_packet",
	"ibc_transfer",
	"fungible_token_packet",
	"acknowledge_packet",
	"create_client",
	"update_client",
	"connection_open_try",
	"connection_open_init",
	"connection_open_confirm",
	"connection_open_ack",
	"channel_open_try",
	"channel_open_init",
	"channel_open_confirm",
	"channel_open_ack",
	"recv_packet",
	"write_acknowledgement",
	"timeout",
	"timeout_packet",
	"cosmos.authz.v1beta1.EventRevoke",
	"cosmos.authz.v1.EventRevoke",
	"cancel_unbonding_delegation",
	"active_proposal",
	"inactive_proposal",
	"ics27_packet",
	"channel_close_confirm",
}

All allowed values of TypesEventType enum

View Source
var AllowedTypesMsgAddressTypeEnumValues = []TypesMsgAddressType{
	"validator",
	"delegator",
	"depositor",
	"validatorSrc",
	"validatorDst",
	"fromAddress",
	"toAddress",
	"input",
	"output",
	"grantee",
	"granter",
	"signer",
	"withdraw",
	"voter",
	"proposer",
	"authority",
	"sender",
	"receiver",
	"submitter",
	"admin",
	"newAdmin",
	"groupPolicyAddress",
	"executor",
	"groupMember",
	"owner",
	"relayer",
	"payee",
}

All allowed values of TypesMsgAddressType enum

View Source
var AllowedTypesMsgTypeEnumValues = []TypesMsgType{
	"MsgUnknown",
	"MsgSetWithdrawAddress",
	"MsgWithdrawDelegatorReward",
	"MsgWithdrawValidatorCommission",
	"MsgFundCommunityPool",
	"MsgCreateValidator",
	"MsgEditValidator",
	"MsgDelegate",
	"MsgBeginRedelegate",
	"MsgUndelegate",
	"MsgCancelUnbondingDelegation",
	"MsgUnjail",
	"MsgSend",
	"MsgMultiSend",
	"MsgCreateVestingAccount",
	"MsgCreatePermanentLockedAccount",
	"MsgCreatePeriodicVestingAccount",
	"MsgPayForBlobs",
	"MsgGrant",
	"MsgExec",
	"MsgRevoke",
	"MsgGrantAllowance",
	"MsgRevokeAllowance",
	"MsgRegisterEVMAddress",
	"MsgSubmitProposal",
	"MsgExecLegacyContent",
	"MsgVote",
	"MsgVoteWeighted",
	"MsgDeposit",
	"IBCTransfer",
	"MsgVerifyInvariant",
	"MsgSubmitEvidence",
	"MsgSendNFT",
	"MsgCreateGroup",
	"MsgUpdateGroupMembers",
	"MsgUpdateGroupAdmin",
	"MsgUpdateGroupMetadata",
	"MsgCreateGroupPolicy",
	"MsgUpdateGroupPolicyAdmin",
	"MsgCreateGroupWithPolicy",
	"MsgUpdateGroupPolicyDecisionPolicy",
	"MsgUpdateGroupPolicyMetadata",
	"MsgSubmitProposalGroup",
	"MsgWithdrawProposal",
	"MsgVoteGroup",
	"MsgExecGroup",
	"MsgLeaveGroup",
	"MsgSoftwareUpgrade",
	"MsgCancelUpgrade",
	"MsgRegisterInterchainAccount",
	"MsgSendTx",
	"MsgRegisterPayee",
	"MsgRegisterCounterpartyPayee",
	"MsgPayPacketFee",
	"MsgPayPacketFeeAsync",
	"MsgTransfer",
	"MsgCreateClient",
	"MsgUpdateClient",
	"MsgUpgradeClient",
	"MsgSubmitMisbehaviour",
	"MsgConnectionOpenInit",
	"MsgConnectionOpenTry",
	"MsgConnectionOpenAck",
	"MsgConnectionOpenConfirm",
	"MsgChannelOpenInit",
	"MsgChannelOpenTry",
	"MsgChannelOpenAck",
	"MsgChannelOpenConfirm",
	"MsgChannelCloseInit",
	"MsgChannelCloseConfirm",
	"MsgRecvPacket",
	"MsgTimeout",
	"MsgTimeoutOnClose",
	"MsgAcknowledgement",
	"MsgSignalVersion",
	"MsgTryUpgrade",
}

All allowed values of TypesMsgType enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	AddressAPI *AddressAPIService

	BlockAPI *BlockAPIService

	GasAPI *GasAPIService

	GeneralAPI *GeneralAPIService

	NamespaceAPI *NamespaceAPIService

	RollupAPI *RollupAPIService

	SearchAPI *SearchAPIService

	StatsAPI *StatsAPIService

	TransactionsAPI *TransactionsAPIService

	ValidatorAPI *ValidatorAPIService

	VestingAPI *VestingAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Celenium API API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AddressAPIService

type AddressAPIService service

AddressAPIService AddressAPI service

func (*AddressAPIService) AddressBlobs

func (a *AddressAPIService) AddressBlobs(ctx context.Context, hash string) ApiAddressBlobsRequest

AddressBlobs Get blobs pushed by address

Get blobs pushed by address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressBlobsRequest

func (*AddressAPIService) AddressBlobsExecute

Execute executes the request

@return []ResponsesBlobLog

func (*AddressAPIService) AddressDelegations

func (a *AddressAPIService) AddressDelegations(ctx context.Context, hash string) ApiAddressDelegationsRequest

AddressDelegations Get delegations made by address

Get delegations made by address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressDelegationsRequest

func (*AddressAPIService) AddressDelegationsExecute

Execute executes the request

@return []ResponsesDelegation

func (*AddressAPIService) AddressGrantee

func (a *AddressAPIService) AddressGrantee(ctx context.Context, hash string) ApiAddressGranteeRequest

AddressGrantee Get grants where address is grantee

Get grants where address is grantee

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressGranteeRequest

func (*AddressAPIService) AddressGranteeExecute

func (a *AddressAPIService) AddressGranteeExecute(r ApiAddressGranteeRequest) ([]ResponsesGrant, *http.Response, error)

Execute executes the request

@return []ResponsesGrant

func (*AddressAPIService) AddressGrants

func (a *AddressAPIService) AddressGrants(ctx context.Context, hash string) ApiAddressGrantsRequest

AddressGrants Get grants made by address

Get grants made by address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressGrantsRequest

func (*AddressAPIService) AddressGrantsExecute

func (a *AddressAPIService) AddressGrantsExecute(r ApiAddressGrantsRequest) ([]ResponsesGrant, *http.Response, error)

Execute executes the request

@return []ResponsesGrant

func (*AddressAPIService) AddressMessages

func (a *AddressAPIService) AddressMessages(ctx context.Context, hash string) ApiAddressMessagesRequest

AddressMessages Get address messages

Get address messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressMessagesRequest

func (*AddressAPIService) AddressMessagesExecute

Execute executes the request

@return []ResponsesMessageForAddress

func (*AddressAPIService) AddressRedelegations

func (a *AddressAPIService) AddressRedelegations(ctx context.Context, hash string) ApiAddressRedelegationsRequest

AddressRedelegations Get redelegations made by address

Get redelegations made by address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressRedelegationsRequest

func (*AddressAPIService) AddressRedelegationsExecute

Execute executes the request

@return []ResponsesRedelegation

func (*AddressAPIService) AddressStats

func (a *AddressAPIService) AddressStats(ctx context.Context, hash string, name string, timeframe string) ApiAddressStatsRequest

AddressStats Get address stats

Get address stats

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@param name Series name
@param timeframe Timeframe
@return ApiAddressStatsRequest

func (*AddressAPIService) AddressStatsExecute

Execute executes the request

@return []ResponsesHistogramItem

func (*AddressAPIService) AddressTransactions

func (a *AddressAPIService) AddressTransactions(ctx context.Context, hash string) ApiAddressTransactionsRequest

AddressTransactions Get address transactions

Get address transactions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressTransactionsRequest

func (*AddressAPIService) AddressTransactionsExecute

func (a *AddressAPIService) AddressTransactionsExecute(r ApiAddressTransactionsRequest) ([]ResponsesTx, *http.Response, error)

Execute executes the request

@return []ResponsesTx

func (*AddressAPIService) AddressUndelegations

func (a *AddressAPIService) AddressUndelegations(ctx context.Context, hash string) ApiAddressUndelegationsRequest

AddressUndelegations Get undelegations made by address

Get undelegations made by address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressUndelegationsRequest

func (*AddressAPIService) AddressUndelegationsExecute

Execute executes the request

@return []ResponsesUndelegation

func (*AddressAPIService) AddressVesting

func (a *AddressAPIService) AddressVesting(ctx context.Context, hash string) ApiAddressVestingRequest

AddressVesting Get vesting for address

Get vesting for address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiAddressVestingRequest

func (*AddressAPIService) AddressVestingExecute

Execute executes the request

@return []ResponsesVesting

func (*AddressAPIService) GetAddress

func (a *AddressAPIService) GetAddress(ctx context.Context, hash string) ApiGetAddressRequest

GetAddress Get address info

Get address info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Hash
@return ApiGetAddressRequest

func (*AddressAPIService) GetAddressCount

GetAddressCount Get count of addresses in network

Get count of addresses in network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAddressCountRequest

func (*AddressAPIService) GetAddressCountExecute

func (a *AddressAPIService) GetAddressCountExecute(r ApiGetAddressCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*AddressAPIService) GetAddressExecute

Execute executes the request

@return ResponsesAddress

func (*AddressAPIService) ListAddress

ListAddress List address info

List address info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListAddressRequest

func (*AddressAPIService) ListAddressExecute

Execute executes the request

@return []ResponsesAddress

type ApiAddressBlobsRequest

type ApiAddressBlobsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressBlobsRequest) Execute

func (ApiAddressBlobsRequest) Joins

Flag indicating whether entities of transaction and namespace should be attached or not. Default: true

func (ApiAddressBlobsRequest) Limit

Count of requested entities

func (ApiAddressBlobsRequest) Offset

Offset

func (ApiAddressBlobsRequest) Sort

Sort order. Default: desc

func (ApiAddressBlobsRequest) SortBy

Sort field. If it's empty internal id is used

type ApiAddressDelegationsRequest

type ApiAddressDelegationsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressDelegationsRequest) Execute

func (ApiAddressDelegationsRequest) Limit

Count of requested entities

func (ApiAddressDelegationsRequest) Offset

Offset

func (ApiAddressDelegationsRequest) ShowZero

Show zero delegations

type ApiAddressGranteeRequest

type ApiAddressGranteeRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressGranteeRequest) Execute

func (ApiAddressGranteeRequest) Limit

Count of requested entities

func (ApiAddressGranteeRequest) Offset

Offset

type ApiAddressGrantsRequest

type ApiAddressGrantsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressGrantsRequest) Execute

func (ApiAddressGrantsRequest) Limit

Count of requested entities

func (ApiAddressGrantsRequest) Offset

Offset

type ApiAddressMessagesRequest

type ApiAddressMessagesRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressMessagesRequest) Execute

func (ApiAddressMessagesRequest) Limit

Count of requested entities

func (ApiAddressMessagesRequest) MsgType

Comma-separated message types list

func (ApiAddressMessagesRequest) Offset

Offset

func (ApiAddressMessagesRequest) Sort

Sort order

type ApiAddressRedelegationsRequest

type ApiAddressRedelegationsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressRedelegationsRequest) Execute

func (ApiAddressRedelegationsRequest) Limit

Count of requested entities

func (ApiAddressRedelegationsRequest) Offset

Offset

type ApiAddressStatsRequest

type ApiAddressStatsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressStatsRequest) Execute

func (ApiAddressStatsRequest) From

Time from in unix timestamp

func (ApiAddressStatsRequest) To

Time to in unix timestamp

type ApiAddressTransactionsRequest

type ApiAddressTransactionsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressTransactionsRequest) Execute

func (ApiAddressTransactionsRequest) From

Time from in unix timestamp

func (ApiAddressTransactionsRequest) Height

Block number

func (ApiAddressTransactionsRequest) Limit

Count of requested entities

func (ApiAddressTransactionsRequest) MsgType

Comma-separated message types list

func (ApiAddressTransactionsRequest) Offset

Offset

func (ApiAddressTransactionsRequest) Sort

Sort order

func (ApiAddressTransactionsRequest) Status

Comma-separated status list

func (ApiAddressTransactionsRequest) To

Time to in unix timestamp

type ApiAddressUndelegationsRequest

type ApiAddressUndelegationsRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressUndelegationsRequest) Execute

func (ApiAddressUndelegationsRequest) Limit

Count of requested entities

func (ApiAddressUndelegationsRequest) Offset

Offset

type ApiAddressVestingRequest

type ApiAddressVestingRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiAddressVestingRequest) Execute

func (ApiAddressVestingRequest) Limit

Count of requested entities

func (ApiAddressVestingRequest) Offset

Offset

func (ApiAddressVestingRequest) ShowEnded

Show finished vestings delegations

type ApiBlockBlobsCountRequest

type ApiBlockBlobsCountRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiBlockBlobsCountRequest) Execute

type ApiGasEstimateForPfbRequest

type ApiGasEstimateForPfbRequest struct {
	ApiService *GasAPIService
	// contains filtered or unexported fields
}

func (ApiGasEstimateForPfbRequest) Execute

func (ApiGasEstimateForPfbRequest) Sizes

Comma-separated array of blob sizes

type ApiGasPriceRequest

type ApiGasPriceRequest struct {
	ApiService *GasAPIService
	// contains filtered or unexported fields
}

func (ApiGasPriceRequest) Execute

type ApiGetAddressCountRequest

type ApiGetAddressCountRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiGetAddressCountRequest) Execute

type ApiGetAddressRequest

type ApiGetAddressRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiGetAddressRequest) Execute

type ApiGetBlobLogsRequest

type ApiGetBlobLogsRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlobLogsRequest) Commitment

func (r ApiGetBlobLogsRequest) Commitment(commitment string) ApiGetBlobLogsRequest

Commitment value in URLbase64 format

func (ApiGetBlobLogsRequest) Cursor

Last entity id which is used for cursor pagination

func (ApiGetBlobLogsRequest) Execute

func (ApiGetBlobLogsRequest) From

Time from in unix timestamp

func (ApiGetBlobLogsRequest) Joins

Flag indicating whether entities of rollup, transaction and signer should be attached or not. Default: true

func (ApiGetBlobLogsRequest) Limit

Count of requested entities

func (ApiGetBlobLogsRequest) Offset

Offset

func (ApiGetBlobLogsRequest) Signers

Comma-separated celestia addresses

func (ApiGetBlobLogsRequest) Sort

Sort order. Default: desc

func (ApiGetBlobLogsRequest) SortBy

Sort field. If it's empty internal id is used

func (ApiGetBlobLogsRequest) To

Time to in unix timestamp

type ApiGetBlobMetadataRequest

type ApiGetBlobMetadataRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlobMetadataRequest) Execute

func (ApiGetBlobMetadataRequest) Request added in v1.10.4

Request body containing height, commitment and namespace hash

type ApiGetBlobProofRequest added in v1.10.17

type ApiGetBlobProofRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlobProofRequest) Execute added in v1.10.17

func (ApiGetBlobProofRequest) Request added in v1.10.17

Request body containing height, commitment and namespace hash

type ApiGetBlobRequest

type ApiGetBlobRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlobRequest) Execute

func (ApiGetBlobRequest) Request added in v1.10.4

Request body containing height, commitment and namespace hash

type ApiGetBlobsRequest

type ApiGetBlobsRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlobsRequest) Commitment

func (r ApiGetBlobsRequest) Commitment(commitment string) ApiGetBlobsRequest

Commitment value in URLbase64 format

func (ApiGetBlobsRequest) Cursor

func (r ApiGetBlobsRequest) Cursor(cursor int32) ApiGetBlobsRequest

Last entity id which is used for cursor pagination

func (ApiGetBlobsRequest) Execute

func (ApiGetBlobsRequest) From

Time from in unix timestamp

func (ApiGetBlobsRequest) Limit

Count of requested entities

func (ApiGetBlobsRequest) Namespaces

func (r ApiGetBlobsRequest) Namespaces(namespaces string) ApiGetBlobsRequest

Comma-separated celestia namespaces

func (ApiGetBlobsRequest) Offset

func (r ApiGetBlobsRequest) Offset(offset int32) ApiGetBlobsRequest

Offset

func (ApiGetBlobsRequest) Signers

func (r ApiGetBlobsRequest) Signers(signers string) ApiGetBlobsRequest

Comma-separated celestia addresses

func (ApiGetBlobsRequest) Sort

Sort order. Default: desc

func (ApiGetBlobsRequest) SortBy

func (r ApiGetBlobsRequest) SortBy(sortBy string) ApiGetBlobsRequest

Sort field. If it's empty internal id is used

func (ApiGetBlobsRequest) To

Time to in unix timestamp

type ApiGetBlockBlobsRequest

type ApiGetBlockBlobsRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockBlobsRequest) Execute

func (ApiGetBlockBlobsRequest) Limit

Count of requested entities

func (ApiGetBlockBlobsRequest) Offset

Offset

func (ApiGetBlockBlobsRequest) Sort

Sort order. Default: desc

func (ApiGetBlockBlobsRequest) SortBy

Sort field. If it's empty internal id is used

type ApiGetBlockCountRequest

type ApiGetBlockCountRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockCountRequest) Execute

func (r ApiGetBlockCountRequest) Execute() (int32, *http.Response, error)

type ApiGetBlockEventsRequest

type ApiGetBlockEventsRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockEventsRequest) Execute

func (ApiGetBlockEventsRequest) Limit

Count of requested entities

func (ApiGetBlockEventsRequest) Offset

Offset

type ApiGetBlockMessagesRequest

type ApiGetBlockMessagesRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockMessagesRequest) ExcludedMsgType

func (r ApiGetBlockMessagesRequest) ExcludedMsgType(excludedMsgType string) ApiGetBlockMessagesRequest

Comma-separated message types which should be excluded from list

func (ApiGetBlockMessagesRequest) Execute

func (ApiGetBlockMessagesRequest) Limit

Count of requested entities

func (ApiGetBlockMessagesRequest) MsgType

Comma-separated message types list

func (ApiGetBlockMessagesRequest) Offset

Offset

type ApiGetBlockRequest

type ApiGetBlockRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockRequest) Execute

func (ApiGetBlockRequest) Stats

Need join stats for block

type ApiGetBlockStatsRequest

type ApiGetBlockStatsRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiGetBlockStatsRequest) Execute

type ApiGetConstantsRequest

type ApiGetConstantsRequest struct {
	ApiService *GeneralAPIService
	// contains filtered or unexported fields
}

func (ApiGetConstantsRequest) Execute

type ApiGetEnumsRequest

type ApiGetEnumsRequest struct {
	ApiService *GeneralAPIService
	// contains filtered or unexported fields
}

func (ApiGetEnumsRequest) Execute

type ApiGetNamespaceActiveRequest

type ApiGetNamespaceActiveRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceActiveRequest) Execute

func (ApiGetNamespaceActiveRequest) Sort

Sort field. Default: time

type ApiGetNamespaceBase64Request

type ApiGetNamespaceBase64Request struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceBase64Request) Execute

type ApiGetNamespaceBlobsRequest

type ApiGetNamespaceBlobsRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceBlobsRequest) Execute

type ApiGetNamespaceByVersionAndIdRequest

type ApiGetNamespaceByVersionAndIdRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceByVersionAndIdRequest) Execute

type ApiGetNamespaceCountRequest

type ApiGetNamespaceCountRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceCountRequest) Execute

type ApiGetNamespaceMessagesRequest

type ApiGetNamespaceMessagesRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceMessagesRequest) Execute

func (ApiGetNamespaceMessagesRequest) Limit

Count of requested entities

func (ApiGetNamespaceMessagesRequest) Offset

Offset

type ApiGetNamespaceRequest

type ApiGetNamespaceRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceRequest) Execute

type ApiGetNamespaceRollupsRequest

type ApiGetNamespaceRollupsRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNamespaceRollupsRequest) Execute

func (ApiGetNamespaceRollupsRequest) Limit

Count of requested entities

func (ApiGetNamespaceRollupsRequest) Offset

Offset

type ApiGetRollupAllSeriesRequest

type ApiGetRollupAllSeriesRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupAllSeriesRequest) Execute

type ApiGetRollupBlobsRequest

type ApiGetRollupBlobsRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupBlobsRequest) Execute

func (ApiGetRollupBlobsRequest) Joins

Flag indicating whether entities of transaction and signer should be attached or not. Default: true

func (ApiGetRollupBlobsRequest) Limit

Count of requested entities

func (ApiGetRollupBlobsRequest) Offset

Offset

func (ApiGetRollupBlobsRequest) Sort

Sort order. Default: desc

func (ApiGetRollupBlobsRequest) SortBy

Sort field. If it's empty internal id is used

type ApiGetRollupBySlugRequest

type ApiGetRollupBySlugRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupBySlugRequest) Execute

type ApiGetRollupDistributionRequest

type ApiGetRollupDistributionRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupDistributionRequest) Execute

type ApiGetRollupNamespacesRequest

type ApiGetRollupNamespacesRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupNamespacesRequest) Execute

func (ApiGetRollupNamespacesRequest) Limit

Count of requested entities

func (ApiGetRollupNamespacesRequest) Offset

Offset

type ApiGetRollupRequest

type ApiGetRollupRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupRequest) Execute

type ApiGetRollupStatsRequest

type ApiGetRollupStatsRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupStatsRequest) Execute

func (ApiGetRollupStatsRequest) From

Time from in unix timestamp

func (ApiGetRollupStatsRequest) To

Time to in unix timestamp

type ApiGetRollupsCountRequest

type ApiGetRollupsCountRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiGetRollupsCountRequest) Execute

type ApiGetTransactionEventsRequest

type ApiGetTransactionEventsRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetTransactionEventsRequest) Execute

func (ApiGetTransactionEventsRequest) Limit

Count of requested entities

func (ApiGetTransactionEventsRequest) Offset

Offset

type ApiGetTransactionMessagesRequest

type ApiGetTransactionMessagesRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetTransactionMessagesRequest) Execute

func (ApiGetTransactionMessagesRequest) Limit

Count of requested entities

func (ApiGetTransactionMessagesRequest) Offset

Offset

type ApiGetTransactionRequest

type ApiGetTransactionRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetTransactionRequest) Execute

type ApiGetTransactionsCountRequest

type ApiGetTransactionsCountRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetTransactionsCountRequest) Execute

type ApiGetValidatorBlocksRequest

type ApiGetValidatorBlocksRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiGetValidatorBlocksRequest) Execute

func (ApiGetValidatorBlocksRequest) Limit

Count of requested entities

func (ApiGetValidatorBlocksRequest) Offset

Offset

type ApiGetValidatorRequest

type ApiGetValidatorRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiGetValidatorRequest) Execute

type ApiGetValidatorUptimeRequest

type ApiGetValidatorUptimeRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiGetValidatorUptimeRequest) Execute

func (ApiGetValidatorUptimeRequest) Limit

Count of requested blocks

type ApiGetVestingPeriodsRequest

type ApiGetVestingPeriodsRequest struct {
	ApiService *VestingAPIService
	// contains filtered or unexported fields
}

func (ApiGetVestingPeriodsRequest) Execute

func (ApiGetVestingPeriodsRequest) Limit

Count of requested entities

func (ApiGetVestingPeriodsRequest) Offset

Offset

type ApiHeadRequest

type ApiHeadRequest struct {
	ApiService *GeneralAPIService
	// contains filtered or unexported fields
}

func (ApiHeadRequest) Execute

func (r ApiHeadRequest) Execute() (*ResponsesState, *http.Response, error)

type ApiListAddressRequest

type ApiListAddressRequest struct {
	ApiService *AddressAPIService
	// contains filtered or unexported fields
}

func (ApiListAddressRequest) Execute

func (ApiListAddressRequest) Limit

Count of requested entities

func (ApiListAddressRequest) Offset

Offset

func (ApiListAddressRequest) Sort

Sort order

func (ApiListAddressRequest) SortBy

Sort field

type ApiListBlockRequest

type ApiListBlockRequest struct {
	ApiService *BlockAPIService
	// contains filtered or unexported fields
}

func (ApiListBlockRequest) Execute

func (ApiListBlockRequest) Limit

Count of requested entities

func (ApiListBlockRequest) Offset

Offset

func (ApiListBlockRequest) Sort

Sort order

func (ApiListBlockRequest) Stats

Need join stats for block

type ApiListGenesisTransactionsRequest

type ApiListGenesisTransactionsRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiListGenesisTransactionsRequest) Execute

func (ApiListGenesisTransactionsRequest) Limit

Count of requested entities

func (ApiListGenesisTransactionsRequest) Offset

Offset

func (ApiListGenesisTransactionsRequest) Sort

Sort order

type ApiListNamespaceRequest

type ApiListNamespaceRequest struct {
	ApiService *NamespaceAPIService
	// contains filtered or unexported fields
}

func (ApiListNamespaceRequest) Execute

func (ApiListNamespaceRequest) Limit

Count of requested entities

func (ApiListNamespaceRequest) Offset

Offset

func (ApiListNamespaceRequest) Sort

Sort order. Default: desc

func (ApiListNamespaceRequest) SortBy

Sort field. If it's empty internal id is used

type ApiListRollup24hRequest

type ApiListRollup24hRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiListRollup24hRequest) Category added in v1.10.5

Comma-separated rollup category list

func (ApiListRollup24hRequest) Execute

func (ApiListRollup24hRequest) Limit

Count of requested entities

func (ApiListRollup24hRequest) Offset

Offset

func (ApiListRollup24hRequest) Sort

Sort order. Default: desc

func (ApiListRollup24hRequest) SortBy

Sort field. Default: mb_price

type ApiListRollupRequest

type ApiListRollupRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiListRollupRequest) Category added in v1.10.5

func (r ApiListRollupRequest) Category(category string) ApiListRollupRequest

Comma-separated rollup category list

func (ApiListRollupRequest) Execute

func (ApiListRollupRequest) Limit

Count of requested entities

func (ApiListRollupRequest) Offset

Offset

func (ApiListRollupRequest) Sort

Sort order. Default: desc

func (ApiListRollupRequest) SortBy

Sort field. Default: size

type ApiListTransactionBlobsRequest

type ApiListTransactionBlobsRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionBlobsRequest) Execute

func (ApiListTransactionBlobsRequest) Limit

Count of requested entities

func (ApiListTransactionBlobsRequest) Offset

Offset

func (ApiListTransactionBlobsRequest) Sort

Sort order. Default: desc

func (ApiListTransactionBlobsRequest) SortBy

Sort field. If it's empty internal id is used

type ApiListTransactionsRequest

type ApiListTransactionsRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionsRequest) ExcludedMsgType

func (r ApiListTransactionsRequest) ExcludedMsgType(excludedMsgType string) ApiListTransactionsRequest

Comma-separated message types list which should be excluded

func (ApiListTransactionsRequest) Execute

func (ApiListTransactionsRequest) From

Time from in unix timestamp

func (ApiListTransactionsRequest) Height

Block number

func (ApiListTransactionsRequest) Limit

Count of requested entities

func (ApiListTransactionsRequest) Messages

If true join messages

func (ApiListTransactionsRequest) MsgType

Comma-separated message types list

func (ApiListTransactionsRequest) Offset

Offset

func (ApiListTransactionsRequest) Sort

Sort order

func (ApiListTransactionsRequest) Status

Comma-separated status list

func (ApiListTransactionsRequest) To

Time to in unix timestamp

type ApiListValidatorRequest

type ApiListValidatorRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiListValidatorRequest) Execute

func (ApiListValidatorRequest) Jailed

Return only jailed validators

func (ApiListValidatorRequest) Limit

Count of requested entities

func (ApiListValidatorRequest) Offset

Offset

type ApiRollupExportRequest

type ApiRollupExportRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiRollupExportRequest) Execute

func (r ApiRollupExportRequest) Execute() (*http.Response, error)

func (ApiRollupExportRequest) From

Time from in unix timestamp

func (ApiRollupExportRequest) To

Time to in unix timestamp

type ApiRollupGroupedStatisticsRequest added in v1.10.9

type ApiRollupGroupedStatisticsRequest struct {
	ApiService *RollupAPIService
	// contains filtered or unexported fields
}

func (ApiRollupGroupedStatisticsRequest) Column added in v1.10.9

Group column

func (ApiRollupGroupedStatisticsRequest) Execute added in v1.10.9

func (ApiRollupGroupedStatisticsRequest) Func_ added in v1.10.9

Aggregate function

type ApiSearchRequest

type ApiSearchRequest struct {
	ApiService *SearchAPIService
	// contains filtered or unexported fields
}

func (ApiSearchRequest) Execute

func (ApiSearchRequest) Query

func (r ApiSearchRequest) Query(query string) ApiSearchRequest

Search string

type ApiStats24hChangesRequest

type ApiStats24hChangesRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStats24hChangesRequest) Execute

type ApiStatsMessagesCount24hRequest

type ApiStatsMessagesCount24hRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsMessagesCount24hRequest) Execute

type ApiStatsNamespaceUsageRequest

type ApiStatsNamespaceUsageRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsNamespaceUsageRequest) Execute

func (ApiStatsNamespaceUsageRequest) Top

Count of entities

type ApiStatsNsSeriesRequest

type ApiStatsNsSeriesRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsNsSeriesRequest) Execute

func (ApiStatsNsSeriesRequest) From

Time from in unix timestamp

func (ApiStatsNsSeriesRequest) To

Time to in unix timestamp

type ApiStatsPriceCurrentRequest

type ApiStatsPriceCurrentRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsPriceCurrentRequest) Execute

type ApiStatsPriceSeriesRequest

type ApiStatsPriceSeriesRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsPriceSeriesRequest) Execute

func (ApiStatsPriceSeriesRequest) From

Time from in unix timestamp

func (ApiStatsPriceSeriesRequest) To

Time to in unix timestamp

type ApiStatsRollup24hRequest

type ApiStatsRollup24hRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsRollup24hRequest) Execute

type ApiStatsSeriesCumulativeRequest

type ApiStatsSeriesCumulativeRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsSeriesCumulativeRequest) Execute

func (ApiStatsSeriesCumulativeRequest) From

Time from in unix timestamp

func (ApiStatsSeriesCumulativeRequest) To

Time to in unix timestamp

type ApiStatsSeriesRequest

type ApiStatsSeriesRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsSeriesRequest) Execute

func (ApiStatsSeriesRequest) From

Time from in unix timestamp

func (ApiStatsSeriesRequest) To

Time to in unix timestamp

type ApiStatsSquareSizeRequest

type ApiStatsSquareSizeRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsSquareSizeRequest) Execute

func (ApiStatsSquareSizeRequest) From

Time from in unix timestamp

func (ApiStatsSquareSizeRequest) To

Time to in unix timestamp

type ApiStatsStakingSeriesRequest

type ApiStatsStakingSeriesRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsStakingSeriesRequest) Execute

func (ApiStatsStakingSeriesRequest) From

Time from in unix timestamp

func (ApiStatsStakingSeriesRequest) To

Time to in unix timestamp

type ApiStatsSummaryRequest

type ApiStatsSummaryRequest struct {
	ApiService *StatsAPIService
	// contains filtered or unexported fields
}

func (ApiStatsSummaryRequest) Column

Column name which will be used for computation. Optional for count.

func (ApiStatsSummaryRequest) Execute

func (r ApiStatsSummaryRequest) Execute() (string, *http.Response, error)

func (ApiStatsSummaryRequest) From

Time from in unix timestamp

func (ApiStatsSummaryRequest) To

Time to in unix timestamp

type ApiTransactionBlobsCountRequest

type ApiTransactionBlobsCountRequest struct {
	ApiService *TransactionsAPIService
	// contains filtered or unexported fields
}

func (ApiTransactionBlobsCountRequest) Execute

type ApiValidatorCountRequest

type ApiValidatorCountRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiValidatorCountRequest) Execute

type ApiValidatorDelegatorsRequest

type ApiValidatorDelegatorsRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiValidatorDelegatorsRequest) Execute

func (ApiValidatorDelegatorsRequest) Limit

Count of requested entities

func (ApiValidatorDelegatorsRequest) Offset

Offset

func (ApiValidatorDelegatorsRequest) ShowZero

Show zero delegations

type ApiValidatorJailsRequest

type ApiValidatorJailsRequest struct {
	ApiService *ValidatorAPIService
	// contains filtered or unexported fields
}

func (ApiValidatorJailsRequest) Execute

func (ApiValidatorJailsRequest) Limit

Count of requested entities

func (ApiValidatorJailsRequest) Offset

Offset

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BlockAPIService

type BlockAPIService service

BlockAPIService BlockAPI service

func (*BlockAPIService) BlockBlobsCount

func (a *BlockAPIService) BlockBlobsCount(ctx context.Context, height int32) ApiBlockBlobsCountRequest

BlockBlobsCount Count of blobs which was pushed by transaction

Count of blobs which was pushed by transaction

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiBlockBlobsCountRequest

func (*BlockAPIService) BlockBlobsCountExecute

func (a *BlockAPIService) BlockBlobsCountExecute(r ApiBlockBlobsCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*BlockAPIService) GetBlock

func (a *BlockAPIService) GetBlock(ctx context.Context, height int32) ApiGetBlockRequest

GetBlock Get block info

Get block info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiGetBlockRequest

func (*BlockAPIService) GetBlockBlobs

func (a *BlockAPIService) GetBlockBlobs(ctx context.Context, height int32) ApiGetBlockBlobsRequest

GetBlockBlobs List blobs which was pushed in the block

List blobs which was pushed in the block

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiGetBlockBlobsRequest

func (*BlockAPIService) GetBlockBlobsExecute

func (a *BlockAPIService) GetBlockBlobsExecute(r ApiGetBlockBlobsRequest) ([]ResponsesBlobLog, *http.Response, error)

Execute executes the request

@return []ResponsesBlobLog

func (*BlockAPIService) GetBlockCount

GetBlockCount Get count of blocks in network

Get count of blocks in network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBlockCountRequest

func (*BlockAPIService) GetBlockCountExecute

func (a *BlockAPIService) GetBlockCountExecute(r ApiGetBlockCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*BlockAPIService) GetBlockEvents

func (a *BlockAPIService) GetBlockEvents(ctx context.Context, height int32) ApiGetBlockEventsRequest

GetBlockEvents Get events from begin and end of block

Get events from begin and end of block

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiGetBlockEventsRequest

func (*BlockAPIService) GetBlockEventsExecute

func (a *BlockAPIService) GetBlockEventsExecute(r ApiGetBlockEventsRequest) ([]ResponsesEvent, *http.Response, error)

Execute executes the request

@return []ResponsesEvent

func (*BlockAPIService) GetBlockExecute

Execute executes the request

@return ResponsesBlock

func (*BlockAPIService) GetBlockMessages

func (a *BlockAPIService) GetBlockMessages(ctx context.Context, height int32) ApiGetBlockMessagesRequest

GetBlockMessages Get messages contained in the block

Get messages contained in the block

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiGetBlockMessagesRequest

func (*BlockAPIService) GetBlockMessagesExecute

func (a *BlockAPIService) GetBlockMessagesExecute(r ApiGetBlockMessagesRequest) ([]ResponsesMessage, *http.Response, error)

Execute executes the request

@return []ResponsesMessage

func (*BlockAPIService) GetBlockStats

func (a *BlockAPIService) GetBlockStats(ctx context.Context, height int32) ApiGetBlockStatsRequest

GetBlockStats Get block stats by height

Get block stats by height

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param height Block height
@return ApiGetBlockStatsRequest

func (*BlockAPIService) GetBlockStatsExecute

Execute executes the request

@return ResponsesBlockStats

func (*BlockAPIService) ListBlock

ListBlock List blocks info

List blocks info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListBlockRequest

func (*BlockAPIService) ListBlockExecute

func (a *BlockAPIService) ListBlockExecute(r ApiListBlockRequest) ([]ResponsesBlock, *http.Response, error)

Execute executes the request

@return []ResponsesBlock

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type GasAPIService

type GasAPIService service

GasAPIService GasAPI service

func (*GasAPIService) GasEstimateForPfb

func (a *GasAPIService) GasEstimateForPfb(ctx context.Context) ApiGasEstimateForPfbRequest

GasEstimateForPfb Get estimated gas for pay for blob

Get estimated gas for pay for blob message with certain values of blob sizes

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGasEstimateForPfbRequest

func (*GasAPIService) GasEstimateForPfbExecute

func (a *GasAPIService) GasEstimateForPfbExecute(r ApiGasEstimateForPfbRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*GasAPIService) GasPrice

GasPrice Get estimated gas price

Get estimated gas price based on historical data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGasPriceRequest

func (*GasAPIService) GasPriceExecute

Execute executes the request

@return ResponsesGasPrice

type GeneralAPIService

type GeneralAPIService service

GeneralAPIService GeneralAPI service

func (*GeneralAPIService) GetConstants

GetConstants Get network constants

Get network constants

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetConstantsRequest

func (*GeneralAPIService) GetConstantsExecute

Execute executes the request

@return ResponsesConstants

func (*GeneralAPIService) GetEnums

GetEnums Get celenium enumerators

Get celenium enumerators

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEnumsRequest

func (*GeneralAPIService) GetEnumsExecute

Execute executes the request

@return ResponsesEnums

func (*GeneralAPIService) Head

Head Get current indexer head

Get current indexer head

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiHeadRequest

func (*GeneralAPIService) HeadExecute

Execute executes the request

@return ResponsesState

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus

type GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus string

GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus the model 'GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus'

List of github_com_celenium-io_celestia-indexer_internal_storage_types.Status

func NewGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatusFromValue

func NewGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatusFromValue(v string) (*GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus, error)

NewGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatusFromValue returns a pointer to a valid GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) Ptr

Ptr returns reference to github_com_celenium-io_celestia-indexer_internal_storage_types.Status value

func (*GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) UnmarshalJSON

type HandlerError

type HandlerError struct {
	Message *string `json:"message,omitempty"`
}

HandlerError struct for HandlerError

func NewHandlerError

func NewHandlerError() *HandlerError

NewHandlerError instantiates a new HandlerError 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

func NewHandlerErrorWithDefaults

func NewHandlerErrorWithDefaults() *HandlerError

NewHandlerErrorWithDefaults instantiates a new HandlerError 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

func (*HandlerError) GetMessage

func (o *HandlerError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*HandlerError) GetMessageOk

func (o *HandlerError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HandlerError) HasMessage

func (o *HandlerError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (HandlerError) MarshalJSON

func (o HandlerError) MarshalJSON() ([]byte, error)

func (*HandlerError) SetMessage

func (o *HandlerError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (HandlerError) ToMap

func (o HandlerError) ToMap() (map[string]interface{}, error)

type HandlerPostBlobRequest added in v1.10.4

type HandlerPostBlobRequest struct {
	Commitment string `json:"commitment"`
	Hash       string `json:"hash"`
	Height     int32  `json:"height"`
}

HandlerPostBlobRequest struct for HandlerPostBlobRequest

func NewHandlerPostBlobRequest added in v1.10.4

func NewHandlerPostBlobRequest(commitment string, hash string, height int32) *HandlerPostBlobRequest

NewHandlerPostBlobRequest instantiates a new HandlerPostBlobRequest 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

func NewHandlerPostBlobRequestWithDefaults added in v1.10.4

func NewHandlerPostBlobRequestWithDefaults() *HandlerPostBlobRequest

NewHandlerPostBlobRequestWithDefaults instantiates a new HandlerPostBlobRequest 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

func (*HandlerPostBlobRequest) GetCommitment added in v1.10.4

func (o *HandlerPostBlobRequest) GetCommitment() string

GetCommitment returns the Commitment field value

func (*HandlerPostBlobRequest) GetCommitmentOk added in v1.10.4

func (o *HandlerPostBlobRequest) GetCommitmentOk() (*string, bool)

GetCommitmentOk returns a tuple with the Commitment field value and a boolean to check if the value has been set.

func (*HandlerPostBlobRequest) GetHash added in v1.10.4

func (o *HandlerPostBlobRequest) GetHash() string

GetHash returns the Hash field value

func (*HandlerPostBlobRequest) GetHashOk added in v1.10.4

func (o *HandlerPostBlobRequest) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value and a boolean to check if the value has been set.

func (*HandlerPostBlobRequest) GetHeight added in v1.10.4

func (o *HandlerPostBlobRequest) GetHeight() int32

GetHeight returns the Height field value

func (*HandlerPostBlobRequest) GetHeightOk added in v1.10.4

func (o *HandlerPostBlobRequest) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value and a boolean to check if the value has been set.

func (HandlerPostBlobRequest) MarshalJSON added in v1.10.4

func (o HandlerPostBlobRequest) MarshalJSON() ([]byte, error)

func (*HandlerPostBlobRequest) SetCommitment added in v1.10.4

func (o *HandlerPostBlobRequest) SetCommitment(v string)

SetCommitment sets field value

func (*HandlerPostBlobRequest) SetHash added in v1.10.4

func (o *HandlerPostBlobRequest) SetHash(v string)

SetHash sets field value

func (*HandlerPostBlobRequest) SetHeight added in v1.10.4

func (o *HandlerPostBlobRequest) SetHeight(v int32)

SetHeight sets field value

func (HandlerPostBlobRequest) ToMap added in v1.10.4

func (o HandlerPostBlobRequest) ToMap() (map[string]interface{}, error)

func (*HandlerPostBlobRequest) UnmarshalJSON added in v1.10.4

func (o *HandlerPostBlobRequest) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NamespaceAPIService

type NamespaceAPIService service

NamespaceAPIService NamespaceAPI service

func (*NamespaceAPIService) GetBlob

GetBlob Get namespace blob by commitment on height

Returns blob. To authorize your requests you have to select the required tariff on our site. Then you receive api key to authorize. Api key should be passed via request header `apikey`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBlobRequest

func (*NamespaceAPIService) GetBlobExecute

Execute executes the request

@return ResponsesBlob

func (*NamespaceAPIService) GetBlobLogs

func (a *NamespaceAPIService) GetBlobLogs(ctx context.Context, id string, version int32) ApiGetBlobLogsRequest

GetBlobLogs Get blob changes for namespace

Returns blob changes for namespace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@param version Version of namespace
@return ApiGetBlobLogsRequest

func (*NamespaceAPIService) GetBlobLogsExecute

Execute executes the request

@return []ResponsesBlobLog

func (*NamespaceAPIService) GetBlobMetadata

GetBlobMetadata Get blob metadata by commitment on height

Returns blob metadata To authorize your requests you have to select the required tariff on our site. Then you receive api key to authorize. Api key should be passed via request header `apikey`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBlobMetadataRequest

func (*NamespaceAPIService) GetBlobMetadataExecute

Execute executes the request

@return ResponsesBlobLog

func (*NamespaceAPIService) GetBlobProof added in v1.10.17

GetBlobProof Get blob inclusion proofs

Returns blob inclusion proofs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBlobProofRequest

func (*NamespaceAPIService) GetBlobProofExecute added in v1.10.17

Execute executes the request

@return ResponsesBlobLog

func (*NamespaceAPIService) GetBlobs

GetBlobs List all blobs with filters

Returns blobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBlobsRequest

func (*NamespaceAPIService) GetBlobsExecute

Execute executes the request

@return []ResponsesLightBlobLog

func (*NamespaceAPIService) GetNamespace

GetNamespace Get namespace info

Returns array of namespace versions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@return ApiGetNamespaceRequest

func (*NamespaceAPIService) GetNamespaceActive

GetNamespaceActive Get last used namespace

Get last used namespace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetNamespaceActiveRequest

func (*NamespaceAPIService) GetNamespaceActiveExecute

Execute executes the request

@return []ResponsesNamespace

func (*NamespaceAPIService) GetNamespaceBase64

func (a *NamespaceAPIService) GetNamespaceBase64(ctx context.Context, hash string) ApiGetNamespaceBase64Request

GetNamespaceBase64 Get namespace info by base64

Returns namespace by base64 encoded identity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Base64-encoded namespace id and version
@return ApiGetNamespaceBase64Request

func (*NamespaceAPIService) GetNamespaceBase64Execute

Execute executes the request

@return ResponsesNamespace

func (*NamespaceAPIService) GetNamespaceBlobs

func (a *NamespaceAPIService) GetNamespaceBlobs(ctx context.Context, hash string, height int32) ApiGetNamespaceBlobsRequest

GetNamespaceBlobs Get namespace blobs on height

Returns blobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Base64-encoded namespace id and version
@param height Block heigth
@return ApiGetNamespaceBlobsRequest

func (*NamespaceAPIService) GetNamespaceBlobsExecute

func (a *NamespaceAPIService) GetNamespaceBlobsExecute(r ApiGetNamespaceBlobsRequest) ([]ResponsesBlob, *http.Response, error)

Execute executes the request

@return []ResponsesBlob

func (*NamespaceAPIService) GetNamespaceByVersionAndId

func (a *NamespaceAPIService) GetNamespaceByVersionAndId(ctx context.Context, id string, version int32) ApiGetNamespaceByVersionAndIdRequest

GetNamespaceByVersionAndId Get namespace info by id and version

Returns namespace by version byte and namespace id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@param version Version of namespace
@return ApiGetNamespaceByVersionAndIdRequest

func (*NamespaceAPIService) GetNamespaceByVersionAndIdExecute

func (a *NamespaceAPIService) GetNamespaceByVersionAndIdExecute(r ApiGetNamespaceByVersionAndIdRequest) (*ResponsesNamespace, *http.Response, error)

Execute executes the request

@return ResponsesNamespace

func (*NamespaceAPIService) GetNamespaceCount

GetNamespaceCount Get count of namespaces in network

Get count of namespaces in network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetNamespaceCountRequest

func (*NamespaceAPIService) GetNamespaceCountExecute

func (a *NamespaceAPIService) GetNamespaceCountExecute(r ApiGetNamespaceCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*NamespaceAPIService) GetNamespaceExecute

Execute executes the request

@return []ResponsesNamespace

func (*NamespaceAPIService) GetNamespaceMessages

func (a *NamespaceAPIService) GetNamespaceMessages(ctx context.Context, id string, version int32) ApiGetNamespaceMessagesRequest

GetNamespaceMessages Get namespace messages by id and version

Returns namespace messages by version byte and namespace id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@param version Version of namespace
@return ApiGetNamespaceMessagesRequest

func (*NamespaceAPIService) GetNamespaceMessagesExecute

Execute executes the request

@return []ResponsesNamespaceMessage

func (*NamespaceAPIService) GetNamespaceRollups

func (a *NamespaceAPIService) GetNamespaceRollups(ctx context.Context, id string, version int32) ApiGetNamespaceRollupsRequest

GetNamespaceRollups List rollups using the namespace

List rollups using the namespace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@param version Version of namespace
@return ApiGetNamespaceRollupsRequest

func (*NamespaceAPIService) GetNamespaceRollupsExecute

func (a *NamespaceAPIService) GetNamespaceRollupsExecute(r ApiGetNamespaceRollupsRequest) ([]ResponsesRollup, *http.Response, error)

Execute executes the request

@return []ResponsesRollup

func (*NamespaceAPIService) ListNamespace

ListNamespace List namespace info

List namespace info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListNamespaceRequest

func (*NamespaceAPIService) ListNamespaceExecute

Execute executes the request

@return []ResponsesNamespace

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus

type NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus struct {
	// contains filtered or unexported fields
}

func (NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) Get

func (NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) IsSet

func (NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) MarshalJSON

func (*NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) Set

func (*NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) UnmarshalJSON

func (*NullableGithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus) Unset

type NullableHandlerError

type NullableHandlerError struct {
	// contains filtered or unexported fields
}

func NewNullableHandlerError

func NewNullableHandlerError(val *HandlerError) *NullableHandlerError

func (NullableHandlerError) Get

func (NullableHandlerError) IsSet

func (v NullableHandlerError) IsSet() bool

func (NullableHandlerError) MarshalJSON

func (v NullableHandlerError) MarshalJSON() ([]byte, error)

func (*NullableHandlerError) Set

func (v *NullableHandlerError) Set(val *HandlerError)

func (*NullableHandlerError) UnmarshalJSON

func (v *NullableHandlerError) UnmarshalJSON(src []byte) error

func (*NullableHandlerError) Unset

func (v *NullableHandlerError) Unset()

type NullableHandlerPostBlobRequest added in v1.10.4

type NullableHandlerPostBlobRequest struct {
	// contains filtered or unexported fields
}

func NewNullableHandlerPostBlobRequest added in v1.10.4

func NewNullableHandlerPostBlobRequest(val *HandlerPostBlobRequest) *NullableHandlerPostBlobRequest

func (NullableHandlerPostBlobRequest) Get added in v1.10.4

func (NullableHandlerPostBlobRequest) IsSet added in v1.10.4

func (NullableHandlerPostBlobRequest) MarshalJSON added in v1.10.4

func (v NullableHandlerPostBlobRequest) MarshalJSON() ([]byte, error)

func (*NullableHandlerPostBlobRequest) Set added in v1.10.4

func (*NullableHandlerPostBlobRequest) UnmarshalJSON added in v1.10.4

func (v *NullableHandlerPostBlobRequest) UnmarshalJSON(src []byte) error

func (*NullableHandlerPostBlobRequest) Unset added in v1.10.4

func (v *NullableHandlerPostBlobRequest) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableResponsesAddress

type NullableResponsesAddress struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesAddress

func NewNullableResponsesAddress(val *ResponsesAddress) *NullableResponsesAddress

func (NullableResponsesAddress) Get

func (NullableResponsesAddress) IsSet

func (v NullableResponsesAddress) IsSet() bool

func (NullableResponsesAddress) MarshalJSON

func (v NullableResponsesAddress) MarshalJSON() ([]byte, error)

func (*NullableResponsesAddress) Set

func (*NullableResponsesAddress) UnmarshalJSON

func (v *NullableResponsesAddress) UnmarshalJSON(src []byte) error

func (*NullableResponsesAddress) Unset

func (v *NullableResponsesAddress) Unset()

type NullableResponsesBalance

type NullableResponsesBalance struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesBalance

func NewNullableResponsesBalance(val *ResponsesBalance) *NullableResponsesBalance

func (NullableResponsesBalance) Get

func (NullableResponsesBalance) IsSet

func (v NullableResponsesBalance) IsSet() bool

func (NullableResponsesBalance) MarshalJSON

func (v NullableResponsesBalance) MarshalJSON() ([]byte, error)

func (*NullableResponsesBalance) Set

func (*NullableResponsesBalance) UnmarshalJSON

func (v *NullableResponsesBalance) UnmarshalJSON(src []byte) error

func (*NullableResponsesBalance) Unset

func (v *NullableResponsesBalance) Unset()

type NullableResponsesBlob

type NullableResponsesBlob struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesBlob

func NewNullableResponsesBlob(val *ResponsesBlob) *NullableResponsesBlob

func (NullableResponsesBlob) Get

func (NullableResponsesBlob) IsSet

func (v NullableResponsesBlob) IsSet() bool

func (NullableResponsesBlob) MarshalJSON

func (v NullableResponsesBlob) MarshalJSON() ([]byte, error)

func (*NullableResponsesBlob) Set

func (v *NullableResponsesBlob) Set(val *ResponsesBlob)

func (*NullableResponsesBlob) UnmarshalJSON

func (v *NullableResponsesBlob) UnmarshalJSON(src []byte) error

func (*NullableResponsesBlob) Unset

func (v *NullableResponsesBlob) Unset()

type NullableResponsesBlobLog

type NullableResponsesBlobLog struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesBlobLog

func NewNullableResponsesBlobLog(val *ResponsesBlobLog) *NullableResponsesBlobLog

func (NullableResponsesBlobLog) Get

func (NullableResponsesBlobLog) IsSet

func (v NullableResponsesBlobLog) IsSet() bool

func (NullableResponsesBlobLog) MarshalJSON

func (v NullableResponsesBlobLog) MarshalJSON() ([]byte, error)

func (*NullableResponsesBlobLog) Set

func (*NullableResponsesBlobLog) UnmarshalJSON

func (v *NullableResponsesBlobLog) UnmarshalJSON(src []byte) error

func (*NullableResponsesBlobLog) Unset

func (v *NullableResponsesBlobLog) Unset()

type NullableResponsesBlock

type NullableResponsesBlock struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesBlock

func NewNullableResponsesBlock(val *ResponsesBlock) *NullableResponsesBlock

func (NullableResponsesBlock) Get

func (NullableResponsesBlock) IsSet

func (v NullableResponsesBlock) IsSet() bool

func (NullableResponsesBlock) MarshalJSON

func (v NullableResponsesBlock) MarshalJSON() ([]byte, error)

func (*NullableResponsesBlock) Set

func (*NullableResponsesBlock) UnmarshalJSON

func (v *NullableResponsesBlock) UnmarshalJSON(src []byte) error

func (*NullableResponsesBlock) Unset

func (v *NullableResponsesBlock) Unset()

type NullableResponsesBlockStats

type NullableResponsesBlockStats struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesBlockStats

func NewNullableResponsesBlockStats(val *ResponsesBlockStats) *NullableResponsesBlockStats

func (NullableResponsesBlockStats) Get

func (NullableResponsesBlockStats) IsSet

func (NullableResponsesBlockStats) MarshalJSON

func (v NullableResponsesBlockStats) MarshalJSON() ([]byte, error)

func (*NullableResponsesBlockStats) Set

func (*NullableResponsesBlockStats) UnmarshalJSON

func (v *NullableResponsesBlockStats) UnmarshalJSON(src []byte) error

func (*NullableResponsesBlockStats) Unset

func (v *NullableResponsesBlockStats) Unset()

type NullableResponsesChange24hBlockStats

type NullableResponsesChange24hBlockStats struct {
	// contains filtered or unexported fields
}

func (NullableResponsesChange24hBlockStats) Get

func (NullableResponsesChange24hBlockStats) IsSet

func (NullableResponsesChange24hBlockStats) MarshalJSON

func (v NullableResponsesChange24hBlockStats) MarshalJSON() ([]byte, error)

func (*NullableResponsesChange24hBlockStats) Set

func (*NullableResponsesChange24hBlockStats) UnmarshalJSON

func (v *NullableResponsesChange24hBlockStats) UnmarshalJSON(src []byte) error

func (*NullableResponsesChange24hBlockStats) Unset

type NullableResponsesConstants

type NullableResponsesConstants struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesConstants

func NewNullableResponsesConstants(val *ResponsesConstants) *NullableResponsesConstants

func (NullableResponsesConstants) Get

func (NullableResponsesConstants) IsSet

func (v NullableResponsesConstants) IsSet() bool

func (NullableResponsesConstants) MarshalJSON

func (v NullableResponsesConstants) MarshalJSON() ([]byte, error)

func (*NullableResponsesConstants) Set

func (*NullableResponsesConstants) UnmarshalJSON

func (v *NullableResponsesConstants) UnmarshalJSON(src []byte) error

func (*NullableResponsesConstants) Unset

func (v *NullableResponsesConstants) Unset()

type NullableResponsesCountItem

type NullableResponsesCountItem struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesCountItem

func NewNullableResponsesCountItem(val *ResponsesCountItem) *NullableResponsesCountItem

func (NullableResponsesCountItem) Get

func (NullableResponsesCountItem) IsSet

func (v NullableResponsesCountItem) IsSet() bool

func (NullableResponsesCountItem) MarshalJSON

func (v NullableResponsesCountItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesCountItem) Set

func (*NullableResponsesCountItem) UnmarshalJSON

func (v *NullableResponsesCountItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesCountItem) Unset

func (v *NullableResponsesCountItem) Unset()

type NullableResponsesDelegation

type NullableResponsesDelegation struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesDelegation

func NewNullableResponsesDelegation(val *ResponsesDelegation) *NullableResponsesDelegation

func (NullableResponsesDelegation) Get

func (NullableResponsesDelegation) IsSet

func (NullableResponsesDelegation) MarshalJSON

func (v NullableResponsesDelegation) MarshalJSON() ([]byte, error)

func (*NullableResponsesDelegation) Set

func (*NullableResponsesDelegation) UnmarshalJSON

func (v *NullableResponsesDelegation) UnmarshalJSON(src []byte) error

func (*NullableResponsesDelegation) Unset

func (v *NullableResponsesDelegation) Unset()

type NullableResponsesDenomMetadata

type NullableResponsesDenomMetadata struct {
	// contains filtered or unexported fields
}

func (NullableResponsesDenomMetadata) Get

func (NullableResponsesDenomMetadata) IsSet

func (NullableResponsesDenomMetadata) MarshalJSON

func (v NullableResponsesDenomMetadata) MarshalJSON() ([]byte, error)

func (*NullableResponsesDenomMetadata) Set

func (*NullableResponsesDenomMetadata) UnmarshalJSON

func (v *NullableResponsesDenomMetadata) UnmarshalJSON(src []byte) error

func (*NullableResponsesDenomMetadata) Unset

func (v *NullableResponsesDenomMetadata) Unset()

type NullableResponsesDistributionItem

type NullableResponsesDistributionItem struct {
	// contains filtered or unexported fields
}

func (NullableResponsesDistributionItem) Get

func (NullableResponsesDistributionItem) IsSet

func (NullableResponsesDistributionItem) MarshalJSON

func (v NullableResponsesDistributionItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesDistributionItem) Set

func (*NullableResponsesDistributionItem) UnmarshalJSON

func (v *NullableResponsesDistributionItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesDistributionItem) Unset

type NullableResponsesEnums

type NullableResponsesEnums struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesEnums

func NewNullableResponsesEnums(val *ResponsesEnums) *NullableResponsesEnums

func (NullableResponsesEnums) Get

func (NullableResponsesEnums) IsSet

func (v NullableResponsesEnums) IsSet() bool

func (NullableResponsesEnums) MarshalJSON

func (v NullableResponsesEnums) MarshalJSON() ([]byte, error)

func (*NullableResponsesEnums) Set

func (*NullableResponsesEnums) UnmarshalJSON

func (v *NullableResponsesEnums) UnmarshalJSON(src []byte) error

func (*NullableResponsesEnums) Unset

func (v *NullableResponsesEnums) Unset()

type NullableResponsesEvent

type NullableResponsesEvent struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesEvent

func NewNullableResponsesEvent(val *ResponsesEvent) *NullableResponsesEvent

func (NullableResponsesEvent) Get

func (NullableResponsesEvent) IsSet

func (v NullableResponsesEvent) IsSet() bool

func (NullableResponsesEvent) MarshalJSON

func (v NullableResponsesEvent) MarshalJSON() ([]byte, error)

func (*NullableResponsesEvent) Set

func (*NullableResponsesEvent) UnmarshalJSON

func (v *NullableResponsesEvent) UnmarshalJSON(src []byte) error

func (*NullableResponsesEvent) Unset

func (v *NullableResponsesEvent) Unset()

type NullableResponsesGasPrice

type NullableResponsesGasPrice struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesGasPrice

func NewNullableResponsesGasPrice(val *ResponsesGasPrice) *NullableResponsesGasPrice

func (NullableResponsesGasPrice) Get

func (NullableResponsesGasPrice) IsSet

func (v NullableResponsesGasPrice) IsSet() bool

func (NullableResponsesGasPrice) MarshalJSON

func (v NullableResponsesGasPrice) MarshalJSON() ([]byte, error)

func (*NullableResponsesGasPrice) Set

func (*NullableResponsesGasPrice) UnmarshalJSON

func (v *NullableResponsesGasPrice) UnmarshalJSON(src []byte) error

func (*NullableResponsesGasPrice) Unset

func (v *NullableResponsesGasPrice) Unset()

type NullableResponsesGrant

type NullableResponsesGrant struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesGrant

func NewNullableResponsesGrant(val *ResponsesGrant) *NullableResponsesGrant

func (NullableResponsesGrant) Get

func (NullableResponsesGrant) IsSet

func (v NullableResponsesGrant) IsSet() bool

func (NullableResponsesGrant) MarshalJSON

func (v NullableResponsesGrant) MarshalJSON() ([]byte, error)

func (*NullableResponsesGrant) Set

func (*NullableResponsesGrant) UnmarshalJSON

func (v *NullableResponsesGrant) UnmarshalJSON(src []byte) error

func (*NullableResponsesGrant) Unset

func (v *NullableResponsesGrant) Unset()

type NullableResponsesHistogramItem

type NullableResponsesHistogramItem struct {
	// contains filtered or unexported fields
}

func (NullableResponsesHistogramItem) Get

func (NullableResponsesHistogramItem) IsSet

func (NullableResponsesHistogramItem) MarshalJSON

func (v NullableResponsesHistogramItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesHistogramItem) Set

func (*NullableResponsesHistogramItem) UnmarshalJSON

func (v *NullableResponsesHistogramItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesHistogramItem) Unset

func (v *NullableResponsesHistogramItem) Unset()

type NullableResponsesJail

type NullableResponsesJail struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesJail

func NewNullableResponsesJail(val *ResponsesJail) *NullableResponsesJail

func (NullableResponsesJail) Get

func (NullableResponsesJail) IsSet

func (v NullableResponsesJail) IsSet() bool

func (NullableResponsesJail) MarshalJSON

func (v NullableResponsesJail) MarshalJSON() ([]byte, error)

func (*NullableResponsesJail) Set

func (v *NullableResponsesJail) Set(val *ResponsesJail)

func (*NullableResponsesJail) UnmarshalJSON

func (v *NullableResponsesJail) UnmarshalJSON(src []byte) error

func (*NullableResponsesJail) Unset

func (v *NullableResponsesJail) Unset()

type NullableResponsesLightBlobLog

type NullableResponsesLightBlobLog struct {
	// contains filtered or unexported fields
}

func (NullableResponsesLightBlobLog) Get

func (NullableResponsesLightBlobLog) IsSet

func (NullableResponsesLightBlobLog) MarshalJSON

func (v NullableResponsesLightBlobLog) MarshalJSON() ([]byte, error)

func (*NullableResponsesLightBlobLog) Set

func (*NullableResponsesLightBlobLog) UnmarshalJSON

func (v *NullableResponsesLightBlobLog) UnmarshalJSON(src []byte) error

func (*NullableResponsesLightBlobLog) Unset

func (v *NullableResponsesLightBlobLog) Unset()

type NullableResponsesMessage

type NullableResponsesMessage struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesMessage

func NewNullableResponsesMessage(val *ResponsesMessage) *NullableResponsesMessage

func (NullableResponsesMessage) Get

func (NullableResponsesMessage) IsSet

func (v NullableResponsesMessage) IsSet() bool

func (NullableResponsesMessage) MarshalJSON

func (v NullableResponsesMessage) MarshalJSON() ([]byte, error)

func (*NullableResponsesMessage) Set

func (*NullableResponsesMessage) UnmarshalJSON

func (v *NullableResponsesMessage) UnmarshalJSON(src []byte) error

func (*NullableResponsesMessage) Unset

func (v *NullableResponsesMessage) Unset()

type NullableResponsesMessageForAddress

type NullableResponsesMessageForAddress struct {
	// contains filtered or unexported fields
}

func (NullableResponsesMessageForAddress) Get

func (NullableResponsesMessageForAddress) IsSet

func (NullableResponsesMessageForAddress) MarshalJSON

func (v NullableResponsesMessageForAddress) MarshalJSON() ([]byte, error)

func (*NullableResponsesMessageForAddress) Set

func (*NullableResponsesMessageForAddress) UnmarshalJSON

func (v *NullableResponsesMessageForAddress) UnmarshalJSON(src []byte) error

func (*NullableResponsesMessageForAddress) Unset

type NullableResponsesNamespace

type NullableResponsesNamespace struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesNamespace

func NewNullableResponsesNamespace(val *ResponsesNamespace) *NullableResponsesNamespace

func (NullableResponsesNamespace) Get

func (NullableResponsesNamespace) IsSet

func (v NullableResponsesNamespace) IsSet() bool

func (NullableResponsesNamespace) MarshalJSON

func (v NullableResponsesNamespace) MarshalJSON() ([]byte, error)

func (*NullableResponsesNamespace) Set

func (*NullableResponsesNamespace) UnmarshalJSON

func (v *NullableResponsesNamespace) UnmarshalJSON(src []byte) error

func (*NullableResponsesNamespace) Unset

func (v *NullableResponsesNamespace) Unset()

type NullableResponsesNamespaceKind

type NullableResponsesNamespaceKind struct {
	// contains filtered or unexported fields
}

func (NullableResponsesNamespaceKind) Get

func (NullableResponsesNamespaceKind) IsSet

func (NullableResponsesNamespaceKind) MarshalJSON

func (v NullableResponsesNamespaceKind) MarshalJSON() ([]byte, error)

func (*NullableResponsesNamespaceKind) Set

func (*NullableResponsesNamespaceKind) UnmarshalJSON

func (v *NullableResponsesNamespaceKind) UnmarshalJSON(src []byte) error

func (*NullableResponsesNamespaceKind) Unset

func (v *NullableResponsesNamespaceKind) Unset()

type NullableResponsesNamespaceMessage

type NullableResponsesNamespaceMessage struct {
	// contains filtered or unexported fields
}

func (NullableResponsesNamespaceMessage) Get

func (NullableResponsesNamespaceMessage) IsSet

func (NullableResponsesNamespaceMessage) MarshalJSON

func (v NullableResponsesNamespaceMessage) MarshalJSON() ([]byte, error)

func (*NullableResponsesNamespaceMessage) Set

func (*NullableResponsesNamespaceMessage) UnmarshalJSON

func (v *NullableResponsesNamespaceMessage) UnmarshalJSON(src []byte) error

func (*NullableResponsesNamespaceMessage) Unset

type NullableResponsesNamespaceUsage

type NullableResponsesNamespaceUsage struct {
	// contains filtered or unexported fields
}

func (NullableResponsesNamespaceUsage) Get

func (NullableResponsesNamespaceUsage) IsSet

func (NullableResponsesNamespaceUsage) MarshalJSON

func (v NullableResponsesNamespaceUsage) MarshalJSON() ([]byte, error)

func (*NullableResponsesNamespaceUsage) Set

func (*NullableResponsesNamespaceUsage) UnmarshalJSON

func (v *NullableResponsesNamespaceUsage) UnmarshalJSON(src []byte) error

func (*NullableResponsesNamespaceUsage) Unset

type NullableResponsesODS

type NullableResponsesODS struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesODS

func NewNullableResponsesODS(val *ResponsesODS) *NullableResponsesODS

func (NullableResponsesODS) Get

func (NullableResponsesODS) IsSet

func (v NullableResponsesODS) IsSet() bool

func (NullableResponsesODS) MarshalJSON

func (v NullableResponsesODS) MarshalJSON() ([]byte, error)

func (*NullableResponsesODS) Set

func (v *NullableResponsesODS) Set(val *ResponsesODS)

func (*NullableResponsesODS) UnmarshalJSON

func (v *NullableResponsesODS) UnmarshalJSON(src []byte) error

func (*NullableResponsesODS) Unset

func (v *NullableResponsesODS) Unset()

type NullableResponsesODSItem

type NullableResponsesODSItem struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesODSItem

func NewNullableResponsesODSItem(val *ResponsesODSItem) *NullableResponsesODSItem

func (NullableResponsesODSItem) Get

func (NullableResponsesODSItem) IsSet

func (v NullableResponsesODSItem) IsSet() bool

func (NullableResponsesODSItem) MarshalJSON

func (v NullableResponsesODSItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesODSItem) Set

func (*NullableResponsesODSItem) UnmarshalJSON

func (v *NullableResponsesODSItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesODSItem) Unset

func (v *NullableResponsesODSItem) Unset()

type NullableResponsesPrice

type NullableResponsesPrice struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesPrice

func NewNullableResponsesPrice(val *ResponsesPrice) *NullableResponsesPrice

func (NullableResponsesPrice) Get

func (NullableResponsesPrice) IsSet

func (v NullableResponsesPrice) IsSet() bool

func (NullableResponsesPrice) MarshalJSON

func (v NullableResponsesPrice) MarshalJSON() ([]byte, error)

func (*NullableResponsesPrice) Set

func (*NullableResponsesPrice) UnmarshalJSON

func (v *NullableResponsesPrice) UnmarshalJSON(src []byte) error

func (*NullableResponsesPrice) Unset

func (v *NullableResponsesPrice) Unset()

type NullableResponsesRedelegation

type NullableResponsesRedelegation struct {
	// contains filtered or unexported fields
}

func (NullableResponsesRedelegation) Get

func (NullableResponsesRedelegation) IsSet

func (NullableResponsesRedelegation) MarshalJSON

func (v NullableResponsesRedelegation) MarshalJSON() ([]byte, error)

func (*NullableResponsesRedelegation) Set

func (*NullableResponsesRedelegation) UnmarshalJSON

func (v *NullableResponsesRedelegation) UnmarshalJSON(src []byte) error

func (*NullableResponsesRedelegation) Unset

func (v *NullableResponsesRedelegation) Unset()

type NullableResponsesRollup

type NullableResponsesRollup struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesRollup

func NewNullableResponsesRollup(val *ResponsesRollup) *NullableResponsesRollup

func (NullableResponsesRollup) Get

func (NullableResponsesRollup) IsSet

func (v NullableResponsesRollup) IsSet() bool

func (NullableResponsesRollup) MarshalJSON

func (v NullableResponsesRollup) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollup) Set

func (*NullableResponsesRollup) UnmarshalJSON

func (v *NullableResponsesRollup) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollup) Unset

func (v *NullableResponsesRollup) Unset()

type NullableResponsesRollupAllSeriesItem

type NullableResponsesRollupAllSeriesItem struct {
	// contains filtered or unexported fields
}

func (NullableResponsesRollupAllSeriesItem) Get

func (NullableResponsesRollupAllSeriesItem) IsSet

func (NullableResponsesRollupAllSeriesItem) MarshalJSON

func (v NullableResponsesRollupAllSeriesItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollupAllSeriesItem) Set

func (*NullableResponsesRollupAllSeriesItem) UnmarshalJSON

func (v *NullableResponsesRollupAllSeriesItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollupAllSeriesItem) Unset

type NullableResponsesRollupGroupedStats added in v1.10.9

type NullableResponsesRollupGroupedStats struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesRollupGroupedStats added in v1.10.9

func NewNullableResponsesRollupGroupedStats(val *ResponsesRollupGroupedStats) *NullableResponsesRollupGroupedStats

func (NullableResponsesRollupGroupedStats) Get added in v1.10.9

func (NullableResponsesRollupGroupedStats) IsSet added in v1.10.9

func (NullableResponsesRollupGroupedStats) MarshalJSON added in v1.10.9

func (v NullableResponsesRollupGroupedStats) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollupGroupedStats) Set added in v1.10.9

func (*NullableResponsesRollupGroupedStats) UnmarshalJSON added in v1.10.9

func (v *NullableResponsesRollupGroupedStats) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollupGroupedStats) Unset added in v1.10.9

type NullableResponsesRollupStats24h

type NullableResponsesRollupStats24h struct {
	// contains filtered or unexported fields
}

func (NullableResponsesRollupStats24h) Get

func (NullableResponsesRollupStats24h) IsSet

func (NullableResponsesRollupStats24h) MarshalJSON

func (v NullableResponsesRollupStats24h) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollupStats24h) Set

func (*NullableResponsesRollupStats24h) UnmarshalJSON

func (v *NullableResponsesRollupStats24h) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollupStats24h) Unset

type NullableResponsesRollupWithDayStats

type NullableResponsesRollupWithDayStats struct {
	// contains filtered or unexported fields
}

func (NullableResponsesRollupWithDayStats) Get

func (NullableResponsesRollupWithDayStats) IsSet

func (NullableResponsesRollupWithDayStats) MarshalJSON

func (v NullableResponsesRollupWithDayStats) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollupWithDayStats) Set

func (*NullableResponsesRollupWithDayStats) UnmarshalJSON

func (v *NullableResponsesRollupWithDayStats) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollupWithDayStats) Unset

type NullableResponsesRollupWithStats

type NullableResponsesRollupWithStats struct {
	// contains filtered or unexported fields
}

func (NullableResponsesRollupWithStats) Get

func (NullableResponsesRollupWithStats) IsSet

func (NullableResponsesRollupWithStats) MarshalJSON

func (v NullableResponsesRollupWithStats) MarshalJSON() ([]byte, error)

func (*NullableResponsesRollupWithStats) Set

func (*NullableResponsesRollupWithStats) UnmarshalJSON

func (v *NullableResponsesRollupWithStats) UnmarshalJSON(src []byte) error

func (*NullableResponsesRollupWithStats) Unset

type NullableResponsesSearchItem

type NullableResponsesSearchItem struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesSearchItem

func NewNullableResponsesSearchItem(val *ResponsesSearchItem) *NullableResponsesSearchItem

func (NullableResponsesSearchItem) Get

func (NullableResponsesSearchItem) IsSet

func (NullableResponsesSearchItem) MarshalJSON

func (v NullableResponsesSearchItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesSearchItem) Set

func (*NullableResponsesSearchItem) UnmarshalJSON

func (v *NullableResponsesSearchItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesSearchItem) Unset

func (v *NullableResponsesSearchItem) Unset()

type NullableResponsesSeriesItem

type NullableResponsesSeriesItem struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesSeriesItem

func NewNullableResponsesSeriesItem(val *ResponsesSeriesItem) *NullableResponsesSeriesItem

func (NullableResponsesSeriesItem) Get

func (NullableResponsesSeriesItem) IsSet

func (NullableResponsesSeriesItem) MarshalJSON

func (v NullableResponsesSeriesItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesSeriesItem) Set

func (*NullableResponsesSeriesItem) UnmarshalJSON

func (v *NullableResponsesSeriesItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesSeriesItem) Unset

func (v *NullableResponsesSeriesItem) Unset()

type NullableResponsesShortRollup

type NullableResponsesShortRollup struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesShortRollup

func NewNullableResponsesShortRollup(val *ResponsesShortRollup) *NullableResponsesShortRollup

func (NullableResponsesShortRollup) Get

func (NullableResponsesShortRollup) IsSet

func (NullableResponsesShortRollup) MarshalJSON

func (v NullableResponsesShortRollup) MarshalJSON() ([]byte, error)

func (*NullableResponsesShortRollup) Set

func (*NullableResponsesShortRollup) UnmarshalJSON

func (v *NullableResponsesShortRollup) UnmarshalJSON(src []byte) error

func (*NullableResponsesShortRollup) Unset

func (v *NullableResponsesShortRollup) Unset()

type NullableResponsesShortValidator

type NullableResponsesShortValidator struct {
	// contains filtered or unexported fields
}

func (NullableResponsesShortValidator) Get

func (NullableResponsesShortValidator) IsSet

func (NullableResponsesShortValidator) MarshalJSON

func (v NullableResponsesShortValidator) MarshalJSON() ([]byte, error)

func (*NullableResponsesShortValidator) Set

func (*NullableResponsesShortValidator) UnmarshalJSON

func (v *NullableResponsesShortValidator) UnmarshalJSON(src []byte) error

func (*NullableResponsesShortValidator) Unset

type NullableResponsesSignedBlocks

type NullableResponsesSignedBlocks struct {
	// contains filtered or unexported fields
}

func (NullableResponsesSignedBlocks) Get

func (NullableResponsesSignedBlocks) IsSet

func (NullableResponsesSignedBlocks) MarshalJSON

func (v NullableResponsesSignedBlocks) MarshalJSON() ([]byte, error)

func (*NullableResponsesSignedBlocks) Set

func (*NullableResponsesSignedBlocks) UnmarshalJSON

func (v *NullableResponsesSignedBlocks) UnmarshalJSON(src []byte) error

func (*NullableResponsesSignedBlocks) Unset

func (v *NullableResponsesSignedBlocks) Unset()

type NullableResponsesState

type NullableResponsesState struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesState

func NewNullableResponsesState(val *ResponsesState) *NullableResponsesState

func (NullableResponsesState) Get

func (NullableResponsesState) IsSet

func (v NullableResponsesState) IsSet() bool

func (NullableResponsesState) MarshalJSON

func (v NullableResponsesState) MarshalJSON() ([]byte, error)

func (*NullableResponsesState) Set

func (*NullableResponsesState) UnmarshalJSON

func (v *NullableResponsesState) UnmarshalJSON(src []byte) error

func (*NullableResponsesState) Unset

func (v *NullableResponsesState) Unset()

type NullableResponsesTPS

type NullableResponsesTPS struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesTPS

func NewNullableResponsesTPS(val *ResponsesTPS) *NullableResponsesTPS

func (NullableResponsesTPS) Get

func (NullableResponsesTPS) IsSet

func (v NullableResponsesTPS) IsSet() bool

func (NullableResponsesTPS) MarshalJSON

func (v NullableResponsesTPS) MarshalJSON() ([]byte, error)

func (*NullableResponsesTPS) Set

func (v *NullableResponsesTPS) Set(val *ResponsesTPS)

func (*NullableResponsesTPS) UnmarshalJSON

func (v *NullableResponsesTPS) UnmarshalJSON(src []byte) error

func (*NullableResponsesTPS) Unset

func (v *NullableResponsesTPS) Unset()

type NullableResponsesTimeValueItem

type NullableResponsesTimeValueItem struct {
	// contains filtered or unexported fields
}

func (NullableResponsesTimeValueItem) Get

func (NullableResponsesTimeValueItem) IsSet

func (NullableResponsesTimeValueItem) MarshalJSON

func (v NullableResponsesTimeValueItem) MarshalJSON() ([]byte, error)

func (*NullableResponsesTimeValueItem) Set

func (*NullableResponsesTimeValueItem) UnmarshalJSON

func (v *NullableResponsesTimeValueItem) UnmarshalJSON(src []byte) error

func (*NullableResponsesTimeValueItem) Unset

func (v *NullableResponsesTimeValueItem) Unset()

type NullableResponsesTx

type NullableResponsesTx struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesTx

func NewNullableResponsesTx(val *ResponsesTx) *NullableResponsesTx

func (NullableResponsesTx) Get

func (NullableResponsesTx) IsSet

func (v NullableResponsesTx) IsSet() bool

func (NullableResponsesTx) MarshalJSON

func (v NullableResponsesTx) MarshalJSON() ([]byte, error)

func (*NullableResponsesTx) Set

func (v *NullableResponsesTx) Set(val *ResponsesTx)

func (*NullableResponsesTx) UnmarshalJSON

func (v *NullableResponsesTx) UnmarshalJSON(src []byte) error

func (*NullableResponsesTx) Unset

func (v *NullableResponsesTx) Unset()

type NullableResponsesTxForAddress

type NullableResponsesTxForAddress struct {
	// contains filtered or unexported fields
}

func (NullableResponsesTxForAddress) Get

func (NullableResponsesTxForAddress) IsSet

func (NullableResponsesTxForAddress) MarshalJSON

func (v NullableResponsesTxForAddress) MarshalJSON() ([]byte, error)

func (*NullableResponsesTxForAddress) Set

func (*NullableResponsesTxForAddress) UnmarshalJSON

func (v *NullableResponsesTxForAddress) UnmarshalJSON(src []byte) error

func (*NullableResponsesTxForAddress) Unset

func (v *NullableResponsesTxForAddress) Unset()

type NullableResponsesUndelegation

type NullableResponsesUndelegation struct {
	// contains filtered or unexported fields
}

func (NullableResponsesUndelegation) Get

func (NullableResponsesUndelegation) IsSet

func (NullableResponsesUndelegation) MarshalJSON

func (v NullableResponsesUndelegation) MarshalJSON() ([]byte, error)

func (*NullableResponsesUndelegation) Set

func (*NullableResponsesUndelegation) UnmarshalJSON

func (v *NullableResponsesUndelegation) UnmarshalJSON(src []byte) error

func (*NullableResponsesUndelegation) Unset

func (v *NullableResponsesUndelegation) Unset()

type NullableResponsesValidator

type NullableResponsesValidator struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesValidator

func NewNullableResponsesValidator(val *ResponsesValidator) *NullableResponsesValidator

func (NullableResponsesValidator) Get

func (NullableResponsesValidator) IsSet

func (v NullableResponsesValidator) IsSet() bool

func (NullableResponsesValidator) MarshalJSON

func (v NullableResponsesValidator) MarshalJSON() ([]byte, error)

func (*NullableResponsesValidator) Set

func (*NullableResponsesValidator) UnmarshalJSON

func (v *NullableResponsesValidator) UnmarshalJSON(src []byte) error

func (*NullableResponsesValidator) Unset

func (v *NullableResponsesValidator) Unset()

type NullableResponsesValidatorCount

type NullableResponsesValidatorCount struct {
	// contains filtered or unexported fields
}

func (NullableResponsesValidatorCount) Get

func (NullableResponsesValidatorCount) IsSet

func (NullableResponsesValidatorCount) MarshalJSON

func (v NullableResponsesValidatorCount) MarshalJSON() ([]byte, error)

func (*NullableResponsesValidatorCount) Set

func (*NullableResponsesValidatorCount) UnmarshalJSON

func (v *NullableResponsesValidatorCount) UnmarshalJSON(src []byte) error

func (*NullableResponsesValidatorCount) Unset

type NullableResponsesValidatorUptime

type NullableResponsesValidatorUptime struct {
	// contains filtered or unexported fields
}

func (NullableResponsesValidatorUptime) Get

func (NullableResponsesValidatorUptime) IsSet

func (NullableResponsesValidatorUptime) MarshalJSON

func (v NullableResponsesValidatorUptime) MarshalJSON() ([]byte, error)

func (*NullableResponsesValidatorUptime) Set

func (*NullableResponsesValidatorUptime) UnmarshalJSON

func (v *NullableResponsesValidatorUptime) UnmarshalJSON(src []byte) error

func (*NullableResponsesValidatorUptime) Unset

type NullableResponsesVesting

type NullableResponsesVesting struct {
	// contains filtered or unexported fields
}

func NewNullableResponsesVesting

func NewNullableResponsesVesting(val *ResponsesVesting) *NullableResponsesVesting

func (NullableResponsesVesting) Get

func (NullableResponsesVesting) IsSet

func (v NullableResponsesVesting) IsSet() bool

func (NullableResponsesVesting) MarshalJSON

func (v NullableResponsesVesting) MarshalJSON() ([]byte, error)

func (*NullableResponsesVesting) Set

func (*NullableResponsesVesting) UnmarshalJSON

func (v *NullableResponsesVesting) UnmarshalJSON(src []byte) error

func (*NullableResponsesVesting) Unset

func (v *NullableResponsesVesting) Unset()

type NullableResponsesVestingPeriod

type NullableResponsesVestingPeriod struct {
	// contains filtered or unexported fields
}

func (NullableResponsesVestingPeriod) Get

func (NullableResponsesVestingPeriod) IsSet

func (NullableResponsesVestingPeriod) MarshalJSON

func (v NullableResponsesVestingPeriod) MarshalJSON() ([]byte, error)

func (*NullableResponsesVestingPeriod) Set

func (*NullableResponsesVestingPeriod) UnmarshalJSON

func (v *NullableResponsesVestingPeriod) UnmarshalJSON(src []byte) error

func (*NullableResponsesVestingPeriod) Unset

func (v *NullableResponsesVestingPeriod) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTypesEventType

type NullableTypesEventType struct {
	// contains filtered or unexported fields
}

func NewNullableTypesEventType

func NewNullableTypesEventType(val *TypesEventType) *NullableTypesEventType

func (NullableTypesEventType) Get

func (NullableTypesEventType) IsSet

func (v NullableTypesEventType) IsSet() bool

func (NullableTypesEventType) MarshalJSON

func (v NullableTypesEventType) MarshalJSON() ([]byte, error)

func (*NullableTypesEventType) Set

func (*NullableTypesEventType) UnmarshalJSON

func (v *NullableTypesEventType) UnmarshalJSON(src []byte) error

func (*NullableTypesEventType) Unset

func (v *NullableTypesEventType) Unset()

type NullableTypesMsgAddressType

type NullableTypesMsgAddressType struct {
	// contains filtered or unexported fields
}

func NewNullableTypesMsgAddressType

func NewNullableTypesMsgAddressType(val *TypesMsgAddressType) *NullableTypesMsgAddressType

func (NullableTypesMsgAddressType) Get

func (NullableTypesMsgAddressType) IsSet

func (NullableTypesMsgAddressType) MarshalJSON

func (v NullableTypesMsgAddressType) MarshalJSON() ([]byte, error)

func (*NullableTypesMsgAddressType) Set

func (*NullableTypesMsgAddressType) UnmarshalJSON

func (v *NullableTypesMsgAddressType) UnmarshalJSON(src []byte) error

func (*NullableTypesMsgAddressType) Unset

func (v *NullableTypesMsgAddressType) Unset()

type NullableTypesMsgType

type NullableTypesMsgType struct {
	// contains filtered or unexported fields
}

func NewNullableTypesMsgType

func NewNullableTypesMsgType(val *TypesMsgType) *NullableTypesMsgType

func (NullableTypesMsgType) Get

func (NullableTypesMsgType) IsSet

func (v NullableTypesMsgType) IsSet() bool

func (NullableTypesMsgType) MarshalJSON

func (v NullableTypesMsgType) MarshalJSON() ([]byte, error)

func (*NullableTypesMsgType) Set

func (v *NullableTypesMsgType) Set(val *TypesMsgType)

func (*NullableTypesMsgType) UnmarshalJSON

func (v *NullableTypesMsgType) UnmarshalJSON(src []byte) error

func (*NullableTypesMsgType) Unset

func (v *NullableTypesMsgType) Unset()

type ResponsesAddress

type ResponsesAddress struct {
	Balance     *ResponsesBalance `json:"balance,omitempty"`
	FirstHeight *int32            `json:"first_height,omitempty"`
	Hash        *string           `json:"hash,omitempty"`
	Id          *int32            `json:"id,omitempty"`
	LastHeight  *int32            `json:"last_height,omitempty"`
}

ResponsesAddress Celestia address information

func NewResponsesAddress

func NewResponsesAddress() *ResponsesAddress

NewResponsesAddress instantiates a new ResponsesAddress 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

func NewResponsesAddressWithDefaults

func NewResponsesAddressWithDefaults() *ResponsesAddress

NewResponsesAddressWithDefaults instantiates a new ResponsesAddress 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

func (*ResponsesAddress) GetBalance

func (o *ResponsesAddress) GetBalance() ResponsesBalance

GetBalance returns the Balance field value if set, zero value otherwise.

func (*ResponsesAddress) GetBalanceOk

func (o *ResponsesAddress) GetBalanceOk() (*ResponsesBalance, bool)

GetBalanceOk returns a tuple with the Balance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesAddress) GetFirstHeight

func (o *ResponsesAddress) GetFirstHeight() int32

GetFirstHeight returns the FirstHeight field value if set, zero value otherwise.

func (*ResponsesAddress) GetFirstHeightOk

func (o *ResponsesAddress) GetFirstHeightOk() (*int32, bool)

GetFirstHeightOk returns a tuple with the FirstHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesAddress) GetHash

func (o *ResponsesAddress) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesAddress) GetHashOk

func (o *ResponsesAddress) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesAddress) GetId

func (o *ResponsesAddress) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesAddress) GetIdOk

func (o *ResponsesAddress) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesAddress) GetLastHeight

func (o *ResponsesAddress) GetLastHeight() int32

GetLastHeight returns the LastHeight field value if set, zero value otherwise.

func (*ResponsesAddress) GetLastHeightOk

func (o *ResponsesAddress) GetLastHeightOk() (*int32, bool)

GetLastHeightOk returns a tuple with the LastHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesAddress) HasBalance

func (o *ResponsesAddress) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*ResponsesAddress) HasFirstHeight

func (o *ResponsesAddress) HasFirstHeight() bool

HasFirstHeight returns a boolean if a field has been set.

func (*ResponsesAddress) HasHash

func (o *ResponsesAddress) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesAddress) HasId

func (o *ResponsesAddress) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesAddress) HasLastHeight

func (o *ResponsesAddress) HasLastHeight() bool

HasLastHeight returns a boolean if a field has been set.

func (ResponsesAddress) MarshalJSON

func (o ResponsesAddress) MarshalJSON() ([]byte, error)

func (*ResponsesAddress) SetBalance

func (o *ResponsesAddress) SetBalance(v ResponsesBalance)

SetBalance gets a reference to the given ResponsesBalance and assigns it to the Balance field.

func (*ResponsesAddress) SetFirstHeight

func (o *ResponsesAddress) SetFirstHeight(v int32)

SetFirstHeight gets a reference to the given int32 and assigns it to the FirstHeight field.

func (*ResponsesAddress) SetHash

func (o *ResponsesAddress) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*ResponsesAddress) SetId

func (o *ResponsesAddress) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesAddress) SetLastHeight

func (o *ResponsesAddress) SetLastHeight(v int32)

SetLastHeight gets a reference to the given int32 and assigns it to the LastHeight field.

func (ResponsesAddress) ToMap

func (o ResponsesAddress) ToMap() (map[string]interface{}, error)

type ResponsesBalance

type ResponsesBalance struct {
	Currency  *string `json:"currency,omitempty"`
	Delegated *string `json:"delegated,omitempty"`
	Spendable *string `json:"spendable,omitempty"`
	Unbonding *string `json:"unbonding,omitempty"`
}

ResponsesBalance Balance of address information

func NewResponsesBalance

func NewResponsesBalance() *ResponsesBalance

NewResponsesBalance instantiates a new ResponsesBalance 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

func NewResponsesBalanceWithDefaults

func NewResponsesBalanceWithDefaults() *ResponsesBalance

NewResponsesBalanceWithDefaults instantiates a new ResponsesBalance 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

func (*ResponsesBalance) GetCurrency

func (o *ResponsesBalance) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*ResponsesBalance) GetCurrencyOk

func (o *ResponsesBalance) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBalance) GetDelegated

func (o *ResponsesBalance) GetDelegated() string

GetDelegated returns the Delegated field value if set, zero value otherwise.

func (*ResponsesBalance) GetDelegatedOk

func (o *ResponsesBalance) GetDelegatedOk() (*string, bool)

GetDelegatedOk returns a tuple with the Delegated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBalance) GetSpendable

func (o *ResponsesBalance) GetSpendable() string

GetSpendable returns the Spendable field value if set, zero value otherwise.

func (*ResponsesBalance) GetSpendableOk

func (o *ResponsesBalance) GetSpendableOk() (*string, bool)

GetSpendableOk returns a tuple with the Spendable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBalance) GetUnbonding

func (o *ResponsesBalance) GetUnbonding() string

GetUnbonding returns the Unbonding field value if set, zero value otherwise.

func (*ResponsesBalance) GetUnbondingOk

func (o *ResponsesBalance) GetUnbondingOk() (*string, bool)

GetUnbondingOk returns a tuple with the Unbonding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBalance) HasCurrency

func (o *ResponsesBalance) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*ResponsesBalance) HasDelegated

func (o *ResponsesBalance) HasDelegated() bool

HasDelegated returns a boolean if a field has been set.

func (*ResponsesBalance) HasSpendable

func (o *ResponsesBalance) HasSpendable() bool

HasSpendable returns a boolean if a field has been set.

func (*ResponsesBalance) HasUnbonding

func (o *ResponsesBalance) HasUnbonding() bool

HasUnbonding returns a boolean if a field has been set.

func (ResponsesBalance) MarshalJSON

func (o ResponsesBalance) MarshalJSON() ([]byte, error)

func (*ResponsesBalance) SetCurrency

func (o *ResponsesBalance) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*ResponsesBalance) SetDelegated

func (o *ResponsesBalance) SetDelegated(v string)

SetDelegated gets a reference to the given string and assigns it to the Delegated field.

func (*ResponsesBalance) SetSpendable

func (o *ResponsesBalance) SetSpendable(v string)

SetSpendable gets a reference to the given string and assigns it to the Spendable field.

func (*ResponsesBalance) SetUnbonding

func (o *ResponsesBalance) SetUnbonding(v string)

SetUnbonding gets a reference to the given string and assigns it to the Unbonding field.

func (ResponsesBalance) ToMap

func (o ResponsesBalance) ToMap() (map[string]interface{}, error)

type ResponsesBlob

type ResponsesBlob struct {
	Commitment   *string `json:"commitment,omitempty"`
	ContentType  *string `json:"content_type,omitempty"`
	Data         *string `json:"data,omitempty"`
	Namespace    *string `json:"namespace,omitempty"`
	ShareVersion *int32  `json:"share_version,omitempty"`
}

ResponsesBlob struct for ResponsesBlob

func NewResponsesBlob

func NewResponsesBlob() *ResponsesBlob

NewResponsesBlob instantiates a new ResponsesBlob 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

func NewResponsesBlobWithDefaults

func NewResponsesBlobWithDefaults() *ResponsesBlob

NewResponsesBlobWithDefaults instantiates a new ResponsesBlob 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

func (*ResponsesBlob) GetCommitment

func (o *ResponsesBlob) GetCommitment() string

GetCommitment returns the Commitment field value if set, zero value otherwise.

func (*ResponsesBlob) GetCommitmentOk

func (o *ResponsesBlob) GetCommitmentOk() (*string, bool)

GetCommitmentOk returns a tuple with the Commitment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlob) GetContentType

func (o *ResponsesBlob) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*ResponsesBlob) GetContentTypeOk

func (o *ResponsesBlob) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlob) GetData

func (o *ResponsesBlob) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*ResponsesBlob) GetDataOk

func (o *ResponsesBlob) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlob) GetNamespace

func (o *ResponsesBlob) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResponsesBlob) GetNamespaceOk

func (o *ResponsesBlob) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlob) GetShareVersion

func (o *ResponsesBlob) GetShareVersion() int32

GetShareVersion returns the ShareVersion field value if set, zero value otherwise.

func (*ResponsesBlob) GetShareVersionOk

func (o *ResponsesBlob) GetShareVersionOk() (*int32, bool)

GetShareVersionOk returns a tuple with the ShareVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlob) HasCommitment

func (o *ResponsesBlob) HasCommitment() bool

HasCommitment returns a boolean if a field has been set.

func (*ResponsesBlob) HasContentType

func (o *ResponsesBlob) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*ResponsesBlob) HasData

func (o *ResponsesBlob) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponsesBlob) HasNamespace

func (o *ResponsesBlob) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResponsesBlob) HasShareVersion

func (o *ResponsesBlob) HasShareVersion() bool

HasShareVersion returns a boolean if a field has been set.

func (ResponsesBlob) MarshalJSON

func (o ResponsesBlob) MarshalJSON() ([]byte, error)

func (*ResponsesBlob) SetCommitment

func (o *ResponsesBlob) SetCommitment(v string)

SetCommitment gets a reference to the given string and assigns it to the Commitment field.

func (*ResponsesBlob) SetContentType

func (o *ResponsesBlob) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*ResponsesBlob) SetData

func (o *ResponsesBlob) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*ResponsesBlob) SetNamespace

func (o *ResponsesBlob) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*ResponsesBlob) SetShareVersion

func (o *ResponsesBlob) SetShareVersion(v int32)

SetShareVersion gets a reference to the given int32 and assigns it to the ShareVersion field.

func (ResponsesBlob) ToMap

func (o ResponsesBlob) ToMap() (map[string]interface{}, error)

type ResponsesBlobLog

type ResponsesBlobLog struct {
	Commitment  *string               `json:"commitment,omitempty"`
	ContentType *string               `json:"content_type,omitempty"`
	Height      *int32                `json:"height,omitempty"`
	Id          *int32                `json:"id,omitempty"`
	Namespace   *ResponsesNamespace   `json:"namespace,omitempty"`
	Rollup      *ResponsesShortRollup `json:"rollup,omitempty"`
	Signer      *string               `json:"signer,omitempty"`
	Size        *int32                `json:"size,omitempty"`
	Time        *time.Time            `json:"time,omitempty"`
	Tx          *ResponsesTx          `json:"tx,omitempty"`
}

ResponsesBlobLog struct for ResponsesBlobLog

func NewResponsesBlobLog

func NewResponsesBlobLog() *ResponsesBlobLog

NewResponsesBlobLog instantiates a new ResponsesBlobLog 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

func NewResponsesBlobLogWithDefaults

func NewResponsesBlobLogWithDefaults() *ResponsesBlobLog

NewResponsesBlobLogWithDefaults instantiates a new ResponsesBlobLog 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

func (*ResponsesBlobLog) GetCommitment

func (o *ResponsesBlobLog) GetCommitment() string

GetCommitment returns the Commitment field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetCommitmentOk

func (o *ResponsesBlobLog) GetCommitmentOk() (*string, bool)

GetCommitmentOk returns a tuple with the Commitment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetContentType

func (o *ResponsesBlobLog) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetContentTypeOk

func (o *ResponsesBlobLog) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetHeight

func (o *ResponsesBlobLog) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetHeightOk

func (o *ResponsesBlobLog) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetId

func (o *ResponsesBlobLog) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetIdOk

func (o *ResponsesBlobLog) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetNamespace

func (o *ResponsesBlobLog) GetNamespace() ResponsesNamespace

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetNamespaceOk

func (o *ResponsesBlobLog) GetNamespaceOk() (*ResponsesNamespace, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetRollup

func (o *ResponsesBlobLog) GetRollup() ResponsesShortRollup

GetRollup returns the Rollup field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetRollupOk

func (o *ResponsesBlobLog) GetRollupOk() (*ResponsesShortRollup, bool)

GetRollupOk returns a tuple with the Rollup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetSigner

func (o *ResponsesBlobLog) GetSigner() string

GetSigner returns the Signer field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetSignerOk

func (o *ResponsesBlobLog) GetSignerOk() (*string, bool)

GetSignerOk returns a tuple with the Signer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetSize

func (o *ResponsesBlobLog) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetSizeOk

func (o *ResponsesBlobLog) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetTime

func (o *ResponsesBlobLog) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetTimeOk

func (o *ResponsesBlobLog) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) GetTx

func (o *ResponsesBlobLog) GetTx() ResponsesTx

GetTx returns the Tx field value if set, zero value otherwise.

func (*ResponsesBlobLog) GetTxOk

func (o *ResponsesBlobLog) GetTxOk() (*ResponsesTx, bool)

GetTxOk returns a tuple with the Tx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlobLog) HasCommitment

func (o *ResponsesBlobLog) HasCommitment() bool

HasCommitment returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasContentType

func (o *ResponsesBlobLog) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasHeight

func (o *ResponsesBlobLog) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasId

func (o *ResponsesBlobLog) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasNamespace

func (o *ResponsesBlobLog) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasRollup

func (o *ResponsesBlobLog) HasRollup() bool

HasRollup returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasSigner

func (o *ResponsesBlobLog) HasSigner() bool

HasSigner returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasSize

func (o *ResponsesBlobLog) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasTime

func (o *ResponsesBlobLog) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesBlobLog) HasTx

func (o *ResponsesBlobLog) HasTx() bool

HasTx returns a boolean if a field has been set.

func (ResponsesBlobLog) MarshalJSON

func (o ResponsesBlobLog) MarshalJSON() ([]byte, error)

func (*ResponsesBlobLog) SetCommitment

func (o *ResponsesBlobLog) SetCommitment(v string)

SetCommitment gets a reference to the given string and assigns it to the Commitment field.

func (*ResponsesBlobLog) SetContentType

func (o *ResponsesBlobLog) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*ResponsesBlobLog) SetHeight

func (o *ResponsesBlobLog) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesBlobLog) SetId

func (o *ResponsesBlobLog) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesBlobLog) SetNamespace

func (o *ResponsesBlobLog) SetNamespace(v ResponsesNamespace)

SetNamespace gets a reference to the given ResponsesNamespace and assigns it to the Namespace field.

func (*ResponsesBlobLog) SetRollup

func (o *ResponsesBlobLog) SetRollup(v ResponsesShortRollup)

SetRollup gets a reference to the given ResponsesShortRollup and assigns it to the Rollup field.

func (*ResponsesBlobLog) SetSigner

func (o *ResponsesBlobLog) SetSigner(v string)

SetSigner gets a reference to the given string and assigns it to the Signer field.

func (*ResponsesBlobLog) SetSize

func (o *ResponsesBlobLog) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesBlobLog) SetTime

func (o *ResponsesBlobLog) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesBlobLog) SetTx

func (o *ResponsesBlobLog) SetTx(v ResponsesTx)

SetTx gets a reference to the given ResponsesTx and assigns it to the Tx field.

func (ResponsesBlobLog) ToMap

func (o ResponsesBlobLog) ToMap() (map[string]interface{}, error)

type ResponsesBlock

type ResponsesBlock struct {
	AppHash            *string                  `json:"app_hash,omitempty"`
	ConsensusHash      *string                  `json:"consensus_hash,omitempty"`
	DataHash           *string                  `json:"data_hash,omitempty"`
	EvidenceHash       *string                  `json:"evidence_hash,omitempty"`
	Hash               *string                  `json:"hash,omitempty"`
	Height             *int32                   `json:"height,omitempty"`
	Id                 *int32                   `json:"id,omitempty"`
	LastCommitHash     *string                  `json:"last_commit_hash,omitempty"`
	LastResultsHash    *string                  `json:"last_results_hash,omitempty"`
	MessageTypes       []string                 `json:"message_types,omitempty"`
	NextValidatorsHash *string                  `json:"next_validators_hash,omitempty"`
	ParentHash         *string                  `json:"parent_hash,omitempty"`
	Proposer           *ResponsesShortValidator `json:"proposer,omitempty"`
	Stats              *ResponsesBlockStats     `json:"stats,omitempty"`
	Time               *string                  `json:"time,omitempty"`
	ValidatorsHash     *string                  `json:"validators_hash,omitempty"`
	VersionApp         *string                  `json:"version_app,omitempty"`
	VersionBlock       *string                  `json:"version_block,omitempty"`
}

ResponsesBlock struct for ResponsesBlock

func NewResponsesBlock

func NewResponsesBlock() *ResponsesBlock

NewResponsesBlock instantiates a new ResponsesBlock 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

func NewResponsesBlockWithDefaults

func NewResponsesBlockWithDefaults() *ResponsesBlock

NewResponsesBlockWithDefaults instantiates a new ResponsesBlock 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

func (*ResponsesBlock) GetAppHash

func (o *ResponsesBlock) GetAppHash() string

GetAppHash returns the AppHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetAppHashOk

func (o *ResponsesBlock) GetAppHashOk() (*string, bool)

GetAppHashOk returns a tuple with the AppHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetConsensusHash

func (o *ResponsesBlock) GetConsensusHash() string

GetConsensusHash returns the ConsensusHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetConsensusHashOk

func (o *ResponsesBlock) GetConsensusHashOk() (*string, bool)

GetConsensusHashOk returns a tuple with the ConsensusHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetDataHash

func (o *ResponsesBlock) GetDataHash() string

GetDataHash returns the DataHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetDataHashOk

func (o *ResponsesBlock) GetDataHashOk() (*string, bool)

GetDataHashOk returns a tuple with the DataHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetEvidenceHash

func (o *ResponsesBlock) GetEvidenceHash() string

GetEvidenceHash returns the EvidenceHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetEvidenceHashOk

func (o *ResponsesBlock) GetEvidenceHashOk() (*string, bool)

GetEvidenceHashOk returns a tuple with the EvidenceHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetHash

func (o *ResponsesBlock) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesBlock) GetHashOk

func (o *ResponsesBlock) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetHeight

func (o *ResponsesBlock) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesBlock) GetHeightOk

func (o *ResponsesBlock) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetId

func (o *ResponsesBlock) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesBlock) GetIdOk

func (o *ResponsesBlock) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetLastCommitHash

func (o *ResponsesBlock) GetLastCommitHash() string

GetLastCommitHash returns the LastCommitHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetLastCommitHashOk

func (o *ResponsesBlock) GetLastCommitHashOk() (*string, bool)

GetLastCommitHashOk returns a tuple with the LastCommitHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetLastResultsHash

func (o *ResponsesBlock) GetLastResultsHash() string

GetLastResultsHash returns the LastResultsHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetLastResultsHashOk

func (o *ResponsesBlock) GetLastResultsHashOk() (*string, bool)

GetLastResultsHashOk returns a tuple with the LastResultsHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetMessageTypes

func (o *ResponsesBlock) GetMessageTypes() []string

GetMessageTypes returns the MessageTypes field value if set, zero value otherwise.

func (*ResponsesBlock) GetMessageTypesOk

func (o *ResponsesBlock) GetMessageTypesOk() ([]string, bool)

GetMessageTypesOk returns a tuple with the MessageTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetNextValidatorsHash

func (o *ResponsesBlock) GetNextValidatorsHash() string

GetNextValidatorsHash returns the NextValidatorsHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetNextValidatorsHashOk

func (o *ResponsesBlock) GetNextValidatorsHashOk() (*string, bool)

GetNextValidatorsHashOk returns a tuple with the NextValidatorsHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetParentHash

func (o *ResponsesBlock) GetParentHash() string

GetParentHash returns the ParentHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetParentHashOk

func (o *ResponsesBlock) GetParentHashOk() (*string, bool)

GetParentHashOk returns a tuple with the ParentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetProposer

func (o *ResponsesBlock) GetProposer() ResponsesShortValidator

GetProposer returns the Proposer field value if set, zero value otherwise.

func (*ResponsesBlock) GetProposerOk

func (o *ResponsesBlock) GetProposerOk() (*ResponsesShortValidator, bool)

GetProposerOk returns a tuple with the Proposer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetStats

func (o *ResponsesBlock) GetStats() ResponsesBlockStats

GetStats returns the Stats field value if set, zero value otherwise.

func (*ResponsesBlock) GetStatsOk

func (o *ResponsesBlock) GetStatsOk() (*ResponsesBlockStats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetTime

func (o *ResponsesBlock) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesBlock) GetTimeOk

func (o *ResponsesBlock) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetValidatorsHash

func (o *ResponsesBlock) GetValidatorsHash() string

GetValidatorsHash returns the ValidatorsHash field value if set, zero value otherwise.

func (*ResponsesBlock) GetValidatorsHashOk

func (o *ResponsesBlock) GetValidatorsHashOk() (*string, bool)

GetValidatorsHashOk returns a tuple with the ValidatorsHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetVersionApp

func (o *ResponsesBlock) GetVersionApp() string

GetVersionApp returns the VersionApp field value if set, zero value otherwise.

func (*ResponsesBlock) GetVersionAppOk

func (o *ResponsesBlock) GetVersionAppOk() (*string, bool)

GetVersionAppOk returns a tuple with the VersionApp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) GetVersionBlock

func (o *ResponsesBlock) GetVersionBlock() string

GetVersionBlock returns the VersionBlock field value if set, zero value otherwise.

func (*ResponsesBlock) GetVersionBlockOk

func (o *ResponsesBlock) GetVersionBlockOk() (*string, bool)

GetVersionBlockOk returns a tuple with the VersionBlock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlock) HasAppHash

func (o *ResponsesBlock) HasAppHash() bool

HasAppHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasConsensusHash

func (o *ResponsesBlock) HasConsensusHash() bool

HasConsensusHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasDataHash

func (o *ResponsesBlock) HasDataHash() bool

HasDataHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasEvidenceHash

func (o *ResponsesBlock) HasEvidenceHash() bool

HasEvidenceHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasHash

func (o *ResponsesBlock) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasHeight

func (o *ResponsesBlock) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesBlock) HasId

func (o *ResponsesBlock) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesBlock) HasLastCommitHash

func (o *ResponsesBlock) HasLastCommitHash() bool

HasLastCommitHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasLastResultsHash

func (o *ResponsesBlock) HasLastResultsHash() bool

HasLastResultsHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasMessageTypes

func (o *ResponsesBlock) HasMessageTypes() bool

HasMessageTypes returns a boolean if a field has been set.

func (*ResponsesBlock) HasNextValidatorsHash

func (o *ResponsesBlock) HasNextValidatorsHash() bool

HasNextValidatorsHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasParentHash

func (o *ResponsesBlock) HasParentHash() bool

HasParentHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasProposer

func (o *ResponsesBlock) HasProposer() bool

HasProposer returns a boolean if a field has been set.

func (*ResponsesBlock) HasStats

func (o *ResponsesBlock) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*ResponsesBlock) HasTime

func (o *ResponsesBlock) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesBlock) HasValidatorsHash

func (o *ResponsesBlock) HasValidatorsHash() bool

HasValidatorsHash returns a boolean if a field has been set.

func (*ResponsesBlock) HasVersionApp

func (o *ResponsesBlock) HasVersionApp() bool

HasVersionApp returns a boolean if a field has been set.

func (*ResponsesBlock) HasVersionBlock

func (o *ResponsesBlock) HasVersionBlock() bool

HasVersionBlock returns a boolean if a field has been set.

func (ResponsesBlock) MarshalJSON

func (o ResponsesBlock) MarshalJSON() ([]byte, error)

func (*ResponsesBlock) SetAppHash

func (o *ResponsesBlock) SetAppHash(v string)

SetAppHash gets a reference to the given string and assigns it to the AppHash field.

func (*ResponsesBlock) SetConsensusHash

func (o *ResponsesBlock) SetConsensusHash(v string)

SetConsensusHash gets a reference to the given string and assigns it to the ConsensusHash field.

func (*ResponsesBlock) SetDataHash

func (o *ResponsesBlock) SetDataHash(v string)

SetDataHash gets a reference to the given string and assigns it to the DataHash field.

func (*ResponsesBlock) SetEvidenceHash

func (o *ResponsesBlock) SetEvidenceHash(v string)

SetEvidenceHash gets a reference to the given string and assigns it to the EvidenceHash field.

func (*ResponsesBlock) SetHash

func (o *ResponsesBlock) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*ResponsesBlock) SetHeight

func (o *ResponsesBlock) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesBlock) SetId

func (o *ResponsesBlock) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesBlock) SetLastCommitHash

func (o *ResponsesBlock) SetLastCommitHash(v string)

SetLastCommitHash gets a reference to the given string and assigns it to the LastCommitHash field.

func (*ResponsesBlock) SetLastResultsHash

func (o *ResponsesBlock) SetLastResultsHash(v string)

SetLastResultsHash gets a reference to the given string and assigns it to the LastResultsHash field.

func (*ResponsesBlock) SetMessageTypes

func (o *ResponsesBlock) SetMessageTypes(v []string)

SetMessageTypes gets a reference to the given []string and assigns it to the MessageTypes field.

func (*ResponsesBlock) SetNextValidatorsHash

func (o *ResponsesBlock) SetNextValidatorsHash(v string)

SetNextValidatorsHash gets a reference to the given string and assigns it to the NextValidatorsHash field.

func (*ResponsesBlock) SetParentHash

func (o *ResponsesBlock) SetParentHash(v string)

SetParentHash gets a reference to the given string and assigns it to the ParentHash field.

func (*ResponsesBlock) SetProposer

func (o *ResponsesBlock) SetProposer(v ResponsesShortValidator)

SetProposer gets a reference to the given ResponsesShortValidator and assigns it to the Proposer field.

func (*ResponsesBlock) SetStats

func (o *ResponsesBlock) SetStats(v ResponsesBlockStats)

SetStats gets a reference to the given ResponsesBlockStats and assigns it to the Stats field.

func (*ResponsesBlock) SetTime

func (o *ResponsesBlock) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (*ResponsesBlock) SetValidatorsHash

func (o *ResponsesBlock) SetValidatorsHash(v string)

SetValidatorsHash gets a reference to the given string and assigns it to the ValidatorsHash field.

func (*ResponsesBlock) SetVersionApp

func (o *ResponsesBlock) SetVersionApp(v string)

SetVersionApp gets a reference to the given string and assigns it to the VersionApp field.

func (*ResponsesBlock) SetVersionBlock

func (o *ResponsesBlock) SetVersionBlock(v string)

SetVersionBlock gets a reference to the given string and assigns it to the VersionBlock field.

func (ResponsesBlock) ToMap

func (o ResponsesBlock) ToMap() (map[string]interface{}, error)

type ResponsesBlockStats

type ResponsesBlockStats struct {
	BlobsCount    *int32  `json:"blobs_count,omitempty"`
	BlobsSize     *int32  `json:"blobs_size,omitempty"`
	BlockTime     *int32  `json:"block_time,omitempty"`
	BytesInBlock  *int32  `json:"bytes_in_block,omitempty"`
	Commissions   *string `json:"commissions,omitempty"`
	EventsCount   *int32  `json:"events_count,omitempty"`
	Fee           *string `json:"fee,omitempty"`
	FillRate      *string `json:"fill_rate,omitempty"`
	GasLimit      *int32  `json:"gas_limit,omitempty"`
	GasUsed       *int32  `json:"gas_used,omitempty"`
	InflationRate *string `json:"inflation_rate,omitempty"`
	Rewards       *string `json:"rewards,omitempty"`
	SquareSize    *int32  `json:"square_size,omitempty"`
	SupplyChange  *string `json:"supply_change,omitempty"`
	TxCount       *int32  `json:"tx_count,omitempty"`
}

ResponsesBlockStats struct for ResponsesBlockStats

func NewResponsesBlockStats

func NewResponsesBlockStats() *ResponsesBlockStats

NewResponsesBlockStats instantiates a new ResponsesBlockStats 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

func NewResponsesBlockStatsWithDefaults

func NewResponsesBlockStatsWithDefaults() *ResponsesBlockStats

NewResponsesBlockStatsWithDefaults instantiates a new ResponsesBlockStats 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

func (*ResponsesBlockStats) GetBlobsCount

func (o *ResponsesBlockStats) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetBlobsCountOk

func (o *ResponsesBlockStats) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetBlobsSize

func (o *ResponsesBlockStats) GetBlobsSize() int32

GetBlobsSize returns the BlobsSize field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetBlobsSizeOk

func (o *ResponsesBlockStats) GetBlobsSizeOk() (*int32, bool)

GetBlobsSizeOk returns a tuple with the BlobsSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetBlockTime

func (o *ResponsesBlockStats) GetBlockTime() int32

GetBlockTime returns the BlockTime field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetBlockTimeOk

func (o *ResponsesBlockStats) GetBlockTimeOk() (*int32, bool)

GetBlockTimeOk returns a tuple with the BlockTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetBytesInBlock

func (o *ResponsesBlockStats) GetBytesInBlock() int32

GetBytesInBlock returns the BytesInBlock field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetBytesInBlockOk

func (o *ResponsesBlockStats) GetBytesInBlockOk() (*int32, bool)

GetBytesInBlockOk returns a tuple with the BytesInBlock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetCommissions

func (o *ResponsesBlockStats) GetCommissions() string

GetCommissions returns the Commissions field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetCommissionsOk

func (o *ResponsesBlockStats) GetCommissionsOk() (*string, bool)

GetCommissionsOk returns a tuple with the Commissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetEventsCount

func (o *ResponsesBlockStats) GetEventsCount() int32

GetEventsCount returns the EventsCount field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetEventsCountOk

func (o *ResponsesBlockStats) GetEventsCountOk() (*int32, bool)

GetEventsCountOk returns a tuple with the EventsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetFee

func (o *ResponsesBlockStats) GetFee() string

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetFeeOk

func (o *ResponsesBlockStats) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetFillRate

func (o *ResponsesBlockStats) GetFillRate() string

GetFillRate returns the FillRate field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetFillRateOk

func (o *ResponsesBlockStats) GetFillRateOk() (*string, bool)

GetFillRateOk returns a tuple with the FillRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetGasLimit

func (o *ResponsesBlockStats) GetGasLimit() int32

GetGasLimit returns the GasLimit field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetGasLimitOk

func (o *ResponsesBlockStats) GetGasLimitOk() (*int32, bool)

GetGasLimitOk returns a tuple with the GasLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetGasUsed

func (o *ResponsesBlockStats) GetGasUsed() int32

GetGasUsed returns the GasUsed field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetGasUsedOk

func (o *ResponsesBlockStats) GetGasUsedOk() (*int32, bool)

GetGasUsedOk returns a tuple with the GasUsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetInflationRate

func (o *ResponsesBlockStats) GetInflationRate() string

GetInflationRate returns the InflationRate field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetInflationRateOk

func (o *ResponsesBlockStats) GetInflationRateOk() (*string, bool)

GetInflationRateOk returns a tuple with the InflationRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetRewards

func (o *ResponsesBlockStats) GetRewards() string

GetRewards returns the Rewards field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetRewardsOk

func (o *ResponsesBlockStats) GetRewardsOk() (*string, bool)

GetRewardsOk returns a tuple with the Rewards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetSquareSize

func (o *ResponsesBlockStats) GetSquareSize() int32

GetSquareSize returns the SquareSize field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetSquareSizeOk

func (o *ResponsesBlockStats) GetSquareSizeOk() (*int32, bool)

GetSquareSizeOk returns a tuple with the SquareSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetSupplyChange

func (o *ResponsesBlockStats) GetSupplyChange() string

GetSupplyChange returns the SupplyChange field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetSupplyChangeOk

func (o *ResponsesBlockStats) GetSupplyChangeOk() (*string, bool)

GetSupplyChangeOk returns a tuple with the SupplyChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) GetTxCount

func (o *ResponsesBlockStats) GetTxCount() int32

GetTxCount returns the TxCount field value if set, zero value otherwise.

func (*ResponsesBlockStats) GetTxCountOk

func (o *ResponsesBlockStats) GetTxCountOk() (*int32, bool)

GetTxCountOk returns a tuple with the TxCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesBlockStats) HasBlobsCount

func (o *ResponsesBlockStats) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasBlobsSize

func (o *ResponsesBlockStats) HasBlobsSize() bool

HasBlobsSize returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasBlockTime

func (o *ResponsesBlockStats) HasBlockTime() bool

HasBlockTime returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasBytesInBlock

func (o *ResponsesBlockStats) HasBytesInBlock() bool

HasBytesInBlock returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasCommissions

func (o *ResponsesBlockStats) HasCommissions() bool

HasCommissions returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasEventsCount

func (o *ResponsesBlockStats) HasEventsCount() bool

HasEventsCount returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasFee

func (o *ResponsesBlockStats) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasFillRate

func (o *ResponsesBlockStats) HasFillRate() bool

HasFillRate returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasGasLimit

func (o *ResponsesBlockStats) HasGasLimit() bool

HasGasLimit returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasGasUsed

func (o *ResponsesBlockStats) HasGasUsed() bool

HasGasUsed returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasInflationRate

func (o *ResponsesBlockStats) HasInflationRate() bool

HasInflationRate returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasRewards

func (o *ResponsesBlockStats) HasRewards() bool

HasRewards returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasSquareSize

func (o *ResponsesBlockStats) HasSquareSize() bool

HasSquareSize returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasSupplyChange

func (o *ResponsesBlockStats) HasSupplyChange() bool

HasSupplyChange returns a boolean if a field has been set.

func (*ResponsesBlockStats) HasTxCount

func (o *ResponsesBlockStats) HasTxCount() bool

HasTxCount returns a boolean if a field has been set.

func (ResponsesBlockStats) MarshalJSON

func (o ResponsesBlockStats) MarshalJSON() ([]byte, error)

func (*ResponsesBlockStats) SetBlobsCount

func (o *ResponsesBlockStats) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesBlockStats) SetBlobsSize

func (o *ResponsesBlockStats) SetBlobsSize(v int32)

SetBlobsSize gets a reference to the given int32 and assigns it to the BlobsSize field.

func (*ResponsesBlockStats) SetBlockTime

func (o *ResponsesBlockStats) SetBlockTime(v int32)

SetBlockTime gets a reference to the given int32 and assigns it to the BlockTime field.

func (*ResponsesBlockStats) SetBytesInBlock

func (o *ResponsesBlockStats) SetBytesInBlock(v int32)

SetBytesInBlock gets a reference to the given int32 and assigns it to the BytesInBlock field.

func (*ResponsesBlockStats) SetCommissions

func (o *ResponsesBlockStats) SetCommissions(v string)

SetCommissions gets a reference to the given string and assigns it to the Commissions field.

func (*ResponsesBlockStats) SetEventsCount

func (o *ResponsesBlockStats) SetEventsCount(v int32)

SetEventsCount gets a reference to the given int32 and assigns it to the EventsCount field.

func (*ResponsesBlockStats) SetFee

func (o *ResponsesBlockStats) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (*ResponsesBlockStats) SetFillRate

func (o *ResponsesBlockStats) SetFillRate(v string)

SetFillRate gets a reference to the given string and assigns it to the FillRate field.

func (*ResponsesBlockStats) SetGasLimit

func (o *ResponsesBlockStats) SetGasLimit(v int32)

SetGasLimit gets a reference to the given int32 and assigns it to the GasLimit field.

func (*ResponsesBlockStats) SetGasUsed

func (o *ResponsesBlockStats) SetGasUsed(v int32)

SetGasUsed gets a reference to the given int32 and assigns it to the GasUsed field.

func (*ResponsesBlockStats) SetInflationRate

func (o *ResponsesBlockStats) SetInflationRate(v string)

SetInflationRate gets a reference to the given string and assigns it to the InflationRate field.

func (*ResponsesBlockStats) SetRewards

func (o *ResponsesBlockStats) SetRewards(v string)

SetRewards gets a reference to the given string and assigns it to the Rewards field.

func (*ResponsesBlockStats) SetSquareSize

func (o *ResponsesBlockStats) SetSquareSize(v int32)

SetSquareSize gets a reference to the given int32 and assigns it to the SquareSize field.

func (*ResponsesBlockStats) SetSupplyChange

func (o *ResponsesBlockStats) SetSupplyChange(v string)

SetSupplyChange gets a reference to the given string and assigns it to the SupplyChange field.

func (*ResponsesBlockStats) SetTxCount

func (o *ResponsesBlockStats) SetTxCount(v int32)

SetTxCount gets a reference to the given int32 and assigns it to the TxCount field.

func (ResponsesBlockStats) ToMap

func (o ResponsesBlockStats) ToMap() (map[string]interface{}, error)

type ResponsesChange24hBlockStats

type ResponsesChange24hBlockStats struct {
	BlobsSize24h    *float32 `json:"blobs_size_24h,omitempty"`
	BytesInBlock24h *float32 `json:"bytes_in_block_24h,omitempty"`
	Fee24h          *float32 `json:"fee_24h,omitempty"`
	TxCount24h      *float32 `json:"tx_count_24h,omitempty"`
}

ResponsesChange24hBlockStats struct for ResponsesChange24hBlockStats

func NewResponsesChange24hBlockStats

func NewResponsesChange24hBlockStats() *ResponsesChange24hBlockStats

NewResponsesChange24hBlockStats instantiates a new ResponsesChange24hBlockStats 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

func NewResponsesChange24hBlockStatsWithDefaults

func NewResponsesChange24hBlockStatsWithDefaults() *ResponsesChange24hBlockStats

NewResponsesChange24hBlockStatsWithDefaults instantiates a new ResponsesChange24hBlockStats 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

func (*ResponsesChange24hBlockStats) GetBlobsSize24h

func (o *ResponsesChange24hBlockStats) GetBlobsSize24h() float32

GetBlobsSize24h returns the BlobsSize24h field value if set, zero value otherwise.

func (*ResponsesChange24hBlockStats) GetBlobsSize24hOk

func (o *ResponsesChange24hBlockStats) GetBlobsSize24hOk() (*float32, bool)

GetBlobsSize24hOk returns a tuple with the BlobsSize24h field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesChange24hBlockStats) GetBytesInBlock24h

func (o *ResponsesChange24hBlockStats) GetBytesInBlock24h() float32

GetBytesInBlock24h returns the BytesInBlock24h field value if set, zero value otherwise.

func (*ResponsesChange24hBlockStats) GetBytesInBlock24hOk

func (o *ResponsesChange24hBlockStats) GetBytesInBlock24hOk() (*float32, bool)

GetBytesInBlock24hOk returns a tuple with the BytesInBlock24h field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesChange24hBlockStats) GetFee24h

func (o *ResponsesChange24hBlockStats) GetFee24h() float32

GetFee24h returns the Fee24h field value if set, zero value otherwise.

func (*ResponsesChange24hBlockStats) GetFee24hOk

func (o *ResponsesChange24hBlockStats) GetFee24hOk() (*float32, bool)

GetFee24hOk returns a tuple with the Fee24h field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesChange24hBlockStats) GetTxCount24h

func (o *ResponsesChange24hBlockStats) GetTxCount24h() float32

GetTxCount24h returns the TxCount24h field value if set, zero value otherwise.

func (*ResponsesChange24hBlockStats) GetTxCount24hOk

func (o *ResponsesChange24hBlockStats) GetTxCount24hOk() (*float32, bool)

GetTxCount24hOk returns a tuple with the TxCount24h field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesChange24hBlockStats) HasBlobsSize24h

func (o *ResponsesChange24hBlockStats) HasBlobsSize24h() bool

HasBlobsSize24h returns a boolean if a field has been set.

func (*ResponsesChange24hBlockStats) HasBytesInBlock24h

func (o *ResponsesChange24hBlockStats) HasBytesInBlock24h() bool

HasBytesInBlock24h returns a boolean if a field has been set.

func (*ResponsesChange24hBlockStats) HasFee24h

func (o *ResponsesChange24hBlockStats) HasFee24h() bool

HasFee24h returns a boolean if a field has been set.

func (*ResponsesChange24hBlockStats) HasTxCount24h

func (o *ResponsesChange24hBlockStats) HasTxCount24h() bool

HasTxCount24h returns a boolean if a field has been set.

func (ResponsesChange24hBlockStats) MarshalJSON

func (o ResponsesChange24hBlockStats) MarshalJSON() ([]byte, error)

func (*ResponsesChange24hBlockStats) SetBlobsSize24h

func (o *ResponsesChange24hBlockStats) SetBlobsSize24h(v float32)

SetBlobsSize24h gets a reference to the given float32 and assigns it to the BlobsSize24h field.

func (*ResponsesChange24hBlockStats) SetBytesInBlock24h

func (o *ResponsesChange24hBlockStats) SetBytesInBlock24h(v float32)

SetBytesInBlock24h gets a reference to the given float32 and assigns it to the BytesInBlock24h field.

func (*ResponsesChange24hBlockStats) SetFee24h

func (o *ResponsesChange24hBlockStats) SetFee24h(v float32)

SetFee24h gets a reference to the given float32 and assigns it to the Fee24h field.

func (*ResponsesChange24hBlockStats) SetTxCount24h

func (o *ResponsesChange24hBlockStats) SetTxCount24h(v float32)

SetTxCount24h gets a reference to the given float32 and assigns it to the TxCount24h field.

func (ResponsesChange24hBlockStats) ToMap

func (o ResponsesChange24hBlockStats) ToMap() (map[string]interface{}, error)

type ResponsesConstants

type ResponsesConstants struct {
	DenomMetadata []ResponsesDenomMetadata      `json:"denom_metadata,omitempty"`
	Module        *map[string]map[string]string `json:"module,omitempty"`
}

ResponsesConstants struct for ResponsesConstants

func NewResponsesConstants

func NewResponsesConstants() *ResponsesConstants

NewResponsesConstants instantiates a new ResponsesConstants 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

func NewResponsesConstantsWithDefaults

func NewResponsesConstantsWithDefaults() *ResponsesConstants

NewResponsesConstantsWithDefaults instantiates a new ResponsesConstants 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

func (*ResponsesConstants) GetDenomMetadata

func (o *ResponsesConstants) GetDenomMetadata() []ResponsesDenomMetadata

GetDenomMetadata returns the DenomMetadata field value if set, zero value otherwise.

func (*ResponsesConstants) GetDenomMetadataOk

func (o *ResponsesConstants) GetDenomMetadataOk() ([]ResponsesDenomMetadata, bool)

GetDenomMetadataOk returns a tuple with the DenomMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesConstants) GetModule

func (o *ResponsesConstants) GetModule() map[string]map[string]string

GetModule returns the Module field value if set, zero value otherwise.

func (*ResponsesConstants) GetModuleOk

func (o *ResponsesConstants) GetModuleOk() (*map[string]map[string]string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesConstants) HasDenomMetadata

func (o *ResponsesConstants) HasDenomMetadata() bool

HasDenomMetadata returns a boolean if a field has been set.

func (*ResponsesConstants) HasModule

func (o *ResponsesConstants) HasModule() bool

HasModule returns a boolean if a field has been set.

func (ResponsesConstants) MarshalJSON

func (o ResponsesConstants) MarshalJSON() ([]byte, error)

func (*ResponsesConstants) SetDenomMetadata

func (o *ResponsesConstants) SetDenomMetadata(v []ResponsesDenomMetadata)

SetDenomMetadata gets a reference to the given []ResponsesDenomMetadata and assigns it to the DenomMetadata field.

func (*ResponsesConstants) SetModule

func (o *ResponsesConstants) SetModule(v map[string]map[string]string)

SetModule gets a reference to the given map[string]map[string]string and assigns it to the Module field.

func (ResponsesConstants) ToMap

func (o ResponsesConstants) ToMap() (map[string]interface{}, error)

type ResponsesCountItem

type ResponsesCountItem struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

ResponsesCountItem struct for ResponsesCountItem

func NewResponsesCountItem

func NewResponsesCountItem() *ResponsesCountItem

NewResponsesCountItem instantiates a new ResponsesCountItem 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

func NewResponsesCountItemWithDefaults

func NewResponsesCountItemWithDefaults() *ResponsesCountItem

NewResponsesCountItemWithDefaults instantiates a new ResponsesCountItem 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

func (*ResponsesCountItem) GetName

func (o *ResponsesCountItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesCountItem) GetNameOk

func (o *ResponsesCountItem) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesCountItem) GetValue

func (o *ResponsesCountItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ResponsesCountItem) GetValueOk

func (o *ResponsesCountItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesCountItem) HasName

func (o *ResponsesCountItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesCountItem) HasValue

func (o *ResponsesCountItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ResponsesCountItem) MarshalJSON

func (o ResponsesCountItem) MarshalJSON() ([]byte, error)

func (*ResponsesCountItem) SetName

func (o *ResponsesCountItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesCountItem) SetValue

func (o *ResponsesCountItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ResponsesCountItem) ToMap

func (o ResponsesCountItem) ToMap() (map[string]interface{}, error)

type ResponsesDelegation

type ResponsesDelegation struct {
	Amount    *string                  `json:"amount,omitempty"`
	Delegator *string                  `json:"delegator,omitempty"`
	Validator *ResponsesShortValidator `json:"validator,omitempty"`
}

ResponsesDelegation struct for ResponsesDelegation

func NewResponsesDelegation

func NewResponsesDelegation() *ResponsesDelegation

NewResponsesDelegation instantiates a new ResponsesDelegation 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

func NewResponsesDelegationWithDefaults

func NewResponsesDelegationWithDefaults() *ResponsesDelegation

NewResponsesDelegationWithDefaults instantiates a new ResponsesDelegation 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

func (*ResponsesDelegation) GetAmount

func (o *ResponsesDelegation) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ResponsesDelegation) GetAmountOk

func (o *ResponsesDelegation) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDelegation) GetDelegator

func (o *ResponsesDelegation) GetDelegator() string

GetDelegator returns the Delegator field value if set, zero value otherwise.

func (*ResponsesDelegation) GetDelegatorOk

func (o *ResponsesDelegation) GetDelegatorOk() (*string, bool)

GetDelegatorOk returns a tuple with the Delegator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDelegation) GetValidator

func (o *ResponsesDelegation) GetValidator() ResponsesShortValidator

GetValidator returns the Validator field value if set, zero value otherwise.

func (*ResponsesDelegation) GetValidatorOk

func (o *ResponsesDelegation) GetValidatorOk() (*ResponsesShortValidator, bool)

GetValidatorOk returns a tuple with the Validator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDelegation) HasAmount

func (o *ResponsesDelegation) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ResponsesDelegation) HasDelegator

func (o *ResponsesDelegation) HasDelegator() bool

HasDelegator returns a boolean if a field has been set.

func (*ResponsesDelegation) HasValidator

func (o *ResponsesDelegation) HasValidator() bool

HasValidator returns a boolean if a field has been set.

func (ResponsesDelegation) MarshalJSON

func (o ResponsesDelegation) MarshalJSON() ([]byte, error)

func (*ResponsesDelegation) SetAmount

func (o *ResponsesDelegation) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*ResponsesDelegation) SetDelegator

func (o *ResponsesDelegation) SetDelegator(v string)

SetDelegator gets a reference to the given string and assigns it to the Delegator field.

func (*ResponsesDelegation) SetValidator

func (o *ResponsesDelegation) SetValidator(v ResponsesShortValidator)

SetValidator gets a reference to the given ResponsesShortValidator and assigns it to the Validator field.

func (ResponsesDelegation) ToMap

func (o ResponsesDelegation) ToMap() (map[string]interface{}, error)

type ResponsesDenomMetadata

type ResponsesDenomMetadata struct {
	Base        *string `json:"base,omitempty"`
	Description *string `json:"description,omitempty"`
	Display     *string `json:"display,omitempty"`
	Name        *string `json:"name,omitempty"`
	Symbol      *string `json:"symbol,omitempty"`
	Units       []int32 `json:"units,omitempty"`
	Uri         *string `json:"uri,omitempty"`
}

ResponsesDenomMetadata struct for ResponsesDenomMetadata

func NewResponsesDenomMetadata

func NewResponsesDenomMetadata() *ResponsesDenomMetadata

NewResponsesDenomMetadata instantiates a new ResponsesDenomMetadata 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

func NewResponsesDenomMetadataWithDefaults

func NewResponsesDenomMetadataWithDefaults() *ResponsesDenomMetadata

NewResponsesDenomMetadataWithDefaults instantiates a new ResponsesDenomMetadata 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

func (*ResponsesDenomMetadata) GetBase

func (o *ResponsesDenomMetadata) GetBase() string

GetBase returns the Base field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetBaseOk

func (o *ResponsesDenomMetadata) GetBaseOk() (*string, bool)

GetBaseOk returns a tuple with the Base field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetDescription

func (o *ResponsesDenomMetadata) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetDescriptionOk

func (o *ResponsesDenomMetadata) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetDisplay

func (o *ResponsesDenomMetadata) GetDisplay() string

GetDisplay returns the Display field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetDisplayOk

func (o *ResponsesDenomMetadata) GetDisplayOk() (*string, bool)

GetDisplayOk returns a tuple with the Display field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetName

func (o *ResponsesDenomMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetNameOk

func (o *ResponsesDenomMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetSymbol

func (o *ResponsesDenomMetadata) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetSymbolOk

func (o *ResponsesDenomMetadata) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetUnits

func (o *ResponsesDenomMetadata) GetUnits() []int32

GetUnits returns the Units field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetUnitsOk

func (o *ResponsesDenomMetadata) GetUnitsOk() ([]int32, bool)

GetUnitsOk returns a tuple with the Units field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) GetUri

func (o *ResponsesDenomMetadata) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*ResponsesDenomMetadata) GetUriOk

func (o *ResponsesDenomMetadata) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDenomMetadata) HasBase

func (o *ResponsesDenomMetadata) HasBase() bool

HasBase returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasDescription

func (o *ResponsesDenomMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasDisplay

func (o *ResponsesDenomMetadata) HasDisplay() bool

HasDisplay returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasName

func (o *ResponsesDenomMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasSymbol

func (o *ResponsesDenomMetadata) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasUnits

func (o *ResponsesDenomMetadata) HasUnits() bool

HasUnits returns a boolean if a field has been set.

func (*ResponsesDenomMetadata) HasUri

func (o *ResponsesDenomMetadata) HasUri() bool

HasUri returns a boolean if a field has been set.

func (ResponsesDenomMetadata) MarshalJSON

func (o ResponsesDenomMetadata) MarshalJSON() ([]byte, error)

func (*ResponsesDenomMetadata) SetBase

func (o *ResponsesDenomMetadata) SetBase(v string)

SetBase gets a reference to the given string and assigns it to the Base field.

func (*ResponsesDenomMetadata) SetDescription

func (o *ResponsesDenomMetadata) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ResponsesDenomMetadata) SetDisplay

func (o *ResponsesDenomMetadata) SetDisplay(v string)

SetDisplay gets a reference to the given string and assigns it to the Display field.

func (*ResponsesDenomMetadata) SetName

func (o *ResponsesDenomMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesDenomMetadata) SetSymbol

func (o *ResponsesDenomMetadata) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*ResponsesDenomMetadata) SetUnits

func (o *ResponsesDenomMetadata) SetUnits(v []int32)

SetUnits gets a reference to the given []int32 and assigns it to the Units field.

func (*ResponsesDenomMetadata) SetUri

func (o *ResponsesDenomMetadata) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (ResponsesDenomMetadata) ToMap

func (o ResponsesDenomMetadata) ToMap() (map[string]interface{}, error)

type ResponsesDistributionItem

type ResponsesDistributionItem struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

ResponsesDistributionItem struct for ResponsesDistributionItem

func NewResponsesDistributionItem

func NewResponsesDistributionItem() *ResponsesDistributionItem

NewResponsesDistributionItem instantiates a new ResponsesDistributionItem 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

func NewResponsesDistributionItemWithDefaults

func NewResponsesDistributionItemWithDefaults() *ResponsesDistributionItem

NewResponsesDistributionItemWithDefaults instantiates a new ResponsesDistributionItem 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

func (*ResponsesDistributionItem) GetName

func (o *ResponsesDistributionItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesDistributionItem) GetNameOk

func (o *ResponsesDistributionItem) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDistributionItem) GetValue

func (o *ResponsesDistributionItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ResponsesDistributionItem) GetValueOk

func (o *ResponsesDistributionItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesDistributionItem) HasName

func (o *ResponsesDistributionItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesDistributionItem) HasValue

func (o *ResponsesDistributionItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ResponsesDistributionItem) MarshalJSON

func (o ResponsesDistributionItem) MarshalJSON() ([]byte, error)

func (*ResponsesDistributionItem) SetName

func (o *ResponsesDistributionItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesDistributionItem) SetValue

func (o *ResponsesDistributionItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ResponsesDistributionItem) ToMap

func (o ResponsesDistributionItem) ToMap() (map[string]interface{}, error)

type ResponsesEnums

type ResponsesEnums struct {
	Categories  []string `json:"categories,omitempty"`
	EventType   []string `json:"event_type,omitempty"`
	MessageType []string `json:"message_type,omitempty"`
	RollupType  []string `json:"rollup_type,omitempty"`
	Status      []string `json:"status,omitempty"`
}

ResponsesEnums struct for ResponsesEnums

func NewResponsesEnums

func NewResponsesEnums() *ResponsesEnums

NewResponsesEnums instantiates a new ResponsesEnums 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

func NewResponsesEnumsWithDefaults

func NewResponsesEnumsWithDefaults() *ResponsesEnums

NewResponsesEnumsWithDefaults instantiates a new ResponsesEnums 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

func (*ResponsesEnums) GetCategories added in v1.10.5

func (o *ResponsesEnums) GetCategories() []string

GetCategories returns the Categories field value if set, zero value otherwise.

func (*ResponsesEnums) GetCategoriesOk added in v1.10.5

func (o *ResponsesEnums) GetCategoriesOk() ([]string, bool)

GetCategoriesOk returns a tuple with the Categories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEnums) GetEventType

func (o *ResponsesEnums) GetEventType() []string

GetEventType returns the EventType field value if set, zero value otherwise.

func (*ResponsesEnums) GetEventTypeOk

func (o *ResponsesEnums) GetEventTypeOk() ([]string, bool)

GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEnums) GetMessageType

func (o *ResponsesEnums) GetMessageType() []string

GetMessageType returns the MessageType field value if set, zero value otherwise.

func (*ResponsesEnums) GetMessageTypeOk

func (o *ResponsesEnums) GetMessageTypeOk() ([]string, bool)

GetMessageTypeOk returns a tuple with the MessageType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEnums) GetRollupType added in v1.10.9

func (o *ResponsesEnums) GetRollupType() []string

GetRollupType returns the RollupType field value if set, zero value otherwise.

func (*ResponsesEnums) GetRollupTypeOk added in v1.10.9

func (o *ResponsesEnums) GetRollupTypeOk() ([]string, bool)

GetRollupTypeOk returns a tuple with the RollupType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEnums) GetStatus

func (o *ResponsesEnums) GetStatus() []string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ResponsesEnums) GetStatusOk

func (o *ResponsesEnums) GetStatusOk() ([]string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEnums) HasCategories added in v1.10.5

func (o *ResponsesEnums) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*ResponsesEnums) HasEventType

func (o *ResponsesEnums) HasEventType() bool

HasEventType returns a boolean if a field has been set.

func (*ResponsesEnums) HasMessageType

func (o *ResponsesEnums) HasMessageType() bool

HasMessageType returns a boolean if a field has been set.

func (*ResponsesEnums) HasRollupType added in v1.10.9

func (o *ResponsesEnums) HasRollupType() bool

HasRollupType returns a boolean if a field has been set.

func (*ResponsesEnums) HasStatus

func (o *ResponsesEnums) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ResponsesEnums) MarshalJSON

func (o ResponsesEnums) MarshalJSON() ([]byte, error)

func (*ResponsesEnums) SetCategories added in v1.10.5

func (o *ResponsesEnums) SetCategories(v []string)

SetCategories gets a reference to the given []string and assigns it to the Categories field.

func (*ResponsesEnums) SetEventType

func (o *ResponsesEnums) SetEventType(v []string)

SetEventType gets a reference to the given []string and assigns it to the EventType field.

func (*ResponsesEnums) SetMessageType

func (o *ResponsesEnums) SetMessageType(v []string)

SetMessageType gets a reference to the given []string and assigns it to the MessageType field.

func (*ResponsesEnums) SetRollupType added in v1.10.9

func (o *ResponsesEnums) SetRollupType(v []string)

SetRollupType gets a reference to the given []string and assigns it to the RollupType field.

func (*ResponsesEnums) SetStatus

func (o *ResponsesEnums) SetStatus(v []string)

SetStatus gets a reference to the given []string and assigns it to the Status field.

func (ResponsesEnums) ToMap

func (o ResponsesEnums) ToMap() (map[string]interface{}, error)

type ResponsesEvent

type ResponsesEvent struct {
	Data     map[string]map[string]interface{} `json:"data,omitempty"`
	Height   *int64                            `json:"height,omitempty"`
	Id       *int64                            `json:"id,omitempty"`
	Position *int64                            `json:"position,omitempty"`
	Time     *time.Time                        `json:"time,omitempty"`
	TxId     *int64                            `json:"tx_id,omitempty"`
	Type     *TypesEventType                   `json:"type,omitempty"`
}

ResponsesEvent struct for ResponsesEvent

func NewResponsesEvent

func NewResponsesEvent() *ResponsesEvent

NewResponsesEvent instantiates a new ResponsesEvent 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

func NewResponsesEventWithDefaults

func NewResponsesEventWithDefaults() *ResponsesEvent

NewResponsesEventWithDefaults instantiates a new ResponsesEvent 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

func (*ResponsesEvent) GetData

func (o *ResponsesEvent) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ResponsesEvent) GetDataOk

func (o *ResponsesEvent) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetHeight

func (o *ResponsesEvent) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesEvent) GetHeightOk

func (o *ResponsesEvent) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetId

func (o *ResponsesEvent) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesEvent) GetIdOk

func (o *ResponsesEvent) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetPosition

func (o *ResponsesEvent) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ResponsesEvent) GetPositionOk

func (o *ResponsesEvent) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetTime

func (o *ResponsesEvent) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesEvent) GetTimeOk

func (o *ResponsesEvent) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetTxId

func (o *ResponsesEvent) GetTxId() int64

GetTxId returns the TxId field value if set, zero value otherwise.

func (*ResponsesEvent) GetTxIdOk

func (o *ResponsesEvent) GetTxIdOk() (*int64, bool)

GetTxIdOk returns a tuple with the TxId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) GetType

func (o *ResponsesEvent) GetType() TypesEventType

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesEvent) GetTypeOk

func (o *ResponsesEvent) GetTypeOk() (*TypesEventType, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesEvent) HasData

func (o *ResponsesEvent) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponsesEvent) HasHeight

func (o *ResponsesEvent) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesEvent) HasId

func (o *ResponsesEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesEvent) HasPosition

func (o *ResponsesEvent) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ResponsesEvent) HasTime

func (o *ResponsesEvent) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesEvent) HasTxId

func (o *ResponsesEvent) HasTxId() bool

HasTxId returns a boolean if a field has been set.

func (*ResponsesEvent) HasType

func (o *ResponsesEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesEvent) MarshalJSON

func (o ResponsesEvent) MarshalJSON() ([]byte, error)

func (*ResponsesEvent) SetData

func (o *ResponsesEvent) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (*ResponsesEvent) SetHeight

func (o *ResponsesEvent) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ResponsesEvent) SetId

func (o *ResponsesEvent) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesEvent) SetPosition

func (o *ResponsesEvent) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ResponsesEvent) SetTime

func (o *ResponsesEvent) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesEvent) SetTxId

func (o *ResponsesEvent) SetTxId(v int64)

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (*ResponsesEvent) SetType

func (o *ResponsesEvent) SetType(v TypesEventType)

SetType gets a reference to the given TypesEventType and assigns it to the Type field.

func (ResponsesEvent) ToMap

func (o ResponsesEvent) ToMap() (map[string]interface{}, error)

type ResponsesGasPrice

type ResponsesGasPrice struct {
	Fast   *string `json:"fast,omitempty"`
	Median *string `json:"median,omitempty"`
	Slow   *string `json:"slow,omitempty"`
}

ResponsesGasPrice struct for ResponsesGasPrice

func NewResponsesGasPrice

func NewResponsesGasPrice() *ResponsesGasPrice

NewResponsesGasPrice instantiates a new ResponsesGasPrice 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

func NewResponsesGasPriceWithDefaults

func NewResponsesGasPriceWithDefaults() *ResponsesGasPrice

NewResponsesGasPriceWithDefaults instantiates a new ResponsesGasPrice 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

func (*ResponsesGasPrice) GetFast

func (o *ResponsesGasPrice) GetFast() string

GetFast returns the Fast field value if set, zero value otherwise.

func (*ResponsesGasPrice) GetFastOk

func (o *ResponsesGasPrice) GetFastOk() (*string, bool)

GetFastOk returns a tuple with the Fast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGasPrice) GetMedian

func (o *ResponsesGasPrice) GetMedian() string

GetMedian returns the Median field value if set, zero value otherwise.

func (*ResponsesGasPrice) GetMedianOk

func (o *ResponsesGasPrice) GetMedianOk() (*string, bool)

GetMedianOk returns a tuple with the Median field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGasPrice) GetSlow

func (o *ResponsesGasPrice) GetSlow() string

GetSlow returns the Slow field value if set, zero value otherwise.

func (*ResponsesGasPrice) GetSlowOk

func (o *ResponsesGasPrice) GetSlowOk() (*string, bool)

GetSlowOk returns a tuple with the Slow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGasPrice) HasFast

func (o *ResponsesGasPrice) HasFast() bool

HasFast returns a boolean if a field has been set.

func (*ResponsesGasPrice) HasMedian

func (o *ResponsesGasPrice) HasMedian() bool

HasMedian returns a boolean if a field has been set.

func (*ResponsesGasPrice) HasSlow

func (o *ResponsesGasPrice) HasSlow() bool

HasSlow returns a boolean if a field has been set.

func (ResponsesGasPrice) MarshalJSON

func (o ResponsesGasPrice) MarshalJSON() ([]byte, error)

func (*ResponsesGasPrice) SetFast

func (o *ResponsesGasPrice) SetFast(v string)

SetFast gets a reference to the given string and assigns it to the Fast field.

func (*ResponsesGasPrice) SetMedian

func (o *ResponsesGasPrice) SetMedian(v string)

SetMedian gets a reference to the given string and assigns it to the Median field.

func (*ResponsesGasPrice) SetSlow

func (o *ResponsesGasPrice) SetSlow(v string)

SetSlow gets a reference to the given string and assigns it to the Slow field.

func (ResponsesGasPrice) ToMap

func (o ResponsesGasPrice) ToMap() (map[string]interface{}, error)

type ResponsesGrant

type ResponsesGrant struct {
	Authorization *string                           `json:"authorization,omitempty"`
	Expiration    *string                           `json:"expiration,omitempty"`
	Grantee       *string                           `json:"grantee,omitempty"`
	Granter       *string                           `json:"granter,omitempty"`
	Height        *int32                            `json:"height,omitempty"`
	Params        map[string]map[string]interface{} `json:"params,omitempty"`
	RevokeHeight  *int32                            `json:"revoke_height,omitempty"`
	Revoked       *bool                             `json:"revoked,omitempty"`
	Time          *string                           `json:"time,omitempty"`
}

ResponsesGrant struct for ResponsesGrant

func NewResponsesGrant

func NewResponsesGrant() *ResponsesGrant

NewResponsesGrant instantiates a new ResponsesGrant 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

func NewResponsesGrantWithDefaults

func NewResponsesGrantWithDefaults() *ResponsesGrant

NewResponsesGrantWithDefaults instantiates a new ResponsesGrant 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

func (*ResponsesGrant) GetAuthorization

func (o *ResponsesGrant) GetAuthorization() string

GetAuthorization returns the Authorization field value if set, zero value otherwise.

func (*ResponsesGrant) GetAuthorizationOk

func (o *ResponsesGrant) GetAuthorizationOk() (*string, bool)

GetAuthorizationOk returns a tuple with the Authorization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetExpiration

func (o *ResponsesGrant) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*ResponsesGrant) GetExpirationOk

func (o *ResponsesGrant) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetGrantee

func (o *ResponsesGrant) GetGrantee() string

GetGrantee returns the Grantee field value if set, zero value otherwise.

func (*ResponsesGrant) GetGranteeOk

func (o *ResponsesGrant) GetGranteeOk() (*string, bool)

GetGranteeOk returns a tuple with the Grantee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetGranter

func (o *ResponsesGrant) GetGranter() string

GetGranter returns the Granter field value if set, zero value otherwise.

func (*ResponsesGrant) GetGranterOk

func (o *ResponsesGrant) GetGranterOk() (*string, bool)

GetGranterOk returns a tuple with the Granter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetHeight

func (o *ResponsesGrant) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesGrant) GetHeightOk

func (o *ResponsesGrant) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetParams

func (o *ResponsesGrant) GetParams() map[string]map[string]interface{}

GetParams returns the Params field value if set, zero value otherwise.

func (*ResponsesGrant) GetParamsOk

func (o *ResponsesGrant) GetParamsOk() (map[string]map[string]interface{}, bool)

GetParamsOk returns a tuple with the Params field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetRevokeHeight

func (o *ResponsesGrant) GetRevokeHeight() int32

GetRevokeHeight returns the RevokeHeight field value if set, zero value otherwise.

func (*ResponsesGrant) GetRevokeHeightOk

func (o *ResponsesGrant) GetRevokeHeightOk() (*int32, bool)

GetRevokeHeightOk returns a tuple with the RevokeHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetRevoked

func (o *ResponsesGrant) GetRevoked() bool

GetRevoked returns the Revoked field value if set, zero value otherwise.

func (*ResponsesGrant) GetRevokedOk

func (o *ResponsesGrant) GetRevokedOk() (*bool, bool)

GetRevokedOk returns a tuple with the Revoked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) GetTime

func (o *ResponsesGrant) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesGrant) GetTimeOk

func (o *ResponsesGrant) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesGrant) HasAuthorization

func (o *ResponsesGrant) HasAuthorization() bool

HasAuthorization returns a boolean if a field has been set.

func (*ResponsesGrant) HasExpiration

func (o *ResponsesGrant) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*ResponsesGrant) HasGrantee

func (o *ResponsesGrant) HasGrantee() bool

HasGrantee returns a boolean if a field has been set.

func (*ResponsesGrant) HasGranter

func (o *ResponsesGrant) HasGranter() bool

HasGranter returns a boolean if a field has been set.

func (*ResponsesGrant) HasHeight

func (o *ResponsesGrant) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesGrant) HasParams

func (o *ResponsesGrant) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*ResponsesGrant) HasRevokeHeight

func (o *ResponsesGrant) HasRevokeHeight() bool

HasRevokeHeight returns a boolean if a field has been set.

func (*ResponsesGrant) HasRevoked

func (o *ResponsesGrant) HasRevoked() bool

HasRevoked returns a boolean if a field has been set.

func (*ResponsesGrant) HasTime

func (o *ResponsesGrant) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ResponsesGrant) MarshalJSON

func (o ResponsesGrant) MarshalJSON() ([]byte, error)

func (*ResponsesGrant) SetAuthorization

func (o *ResponsesGrant) SetAuthorization(v string)

SetAuthorization gets a reference to the given string and assigns it to the Authorization field.

func (*ResponsesGrant) SetExpiration

func (o *ResponsesGrant) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*ResponsesGrant) SetGrantee

func (o *ResponsesGrant) SetGrantee(v string)

SetGrantee gets a reference to the given string and assigns it to the Grantee field.

func (*ResponsesGrant) SetGranter

func (o *ResponsesGrant) SetGranter(v string)

SetGranter gets a reference to the given string and assigns it to the Granter field.

func (*ResponsesGrant) SetHeight

func (o *ResponsesGrant) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesGrant) SetParams

func (o *ResponsesGrant) SetParams(v map[string]map[string]interface{})

SetParams gets a reference to the given map[string]map[string]interface{} and assigns it to the Params field.

func (*ResponsesGrant) SetRevokeHeight

func (o *ResponsesGrant) SetRevokeHeight(v int32)

SetRevokeHeight gets a reference to the given int32 and assigns it to the RevokeHeight field.

func (*ResponsesGrant) SetRevoked

func (o *ResponsesGrant) SetRevoked(v bool)

SetRevoked gets a reference to the given bool and assigns it to the Revoked field.

func (*ResponsesGrant) SetTime

func (o *ResponsesGrant) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (ResponsesGrant) ToMap

func (o ResponsesGrant) ToMap() (map[string]interface{}, error)

type ResponsesHistogramItem

type ResponsesHistogramItem struct {
	Time  *time.Time `json:"time,omitempty"`
	Value *string    `json:"value,omitempty"`
}

ResponsesHistogramItem struct for ResponsesHistogramItem

func NewResponsesHistogramItem

func NewResponsesHistogramItem() *ResponsesHistogramItem

NewResponsesHistogramItem instantiates a new ResponsesHistogramItem 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

func NewResponsesHistogramItemWithDefaults

func NewResponsesHistogramItemWithDefaults() *ResponsesHistogramItem

NewResponsesHistogramItemWithDefaults instantiates a new ResponsesHistogramItem 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

func (*ResponsesHistogramItem) GetTime

func (o *ResponsesHistogramItem) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesHistogramItem) GetTimeOk

func (o *ResponsesHistogramItem) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesHistogramItem) GetValue

func (o *ResponsesHistogramItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ResponsesHistogramItem) GetValueOk

func (o *ResponsesHistogramItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesHistogramItem) HasTime

func (o *ResponsesHistogramItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesHistogramItem) HasValue

func (o *ResponsesHistogramItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ResponsesHistogramItem) MarshalJSON

func (o ResponsesHistogramItem) MarshalJSON() ([]byte, error)

func (*ResponsesHistogramItem) SetTime

func (o *ResponsesHistogramItem) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesHistogramItem) SetValue

func (o *ResponsesHistogramItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ResponsesHistogramItem) ToMap

func (o ResponsesHistogramItem) ToMap() (map[string]interface{}, error)

type ResponsesJail

type ResponsesJail struct {
	Burned    *string                  `json:"burned,omitempty"`
	Height    *int32                   `json:"height,omitempty"`
	Reason    *string                  `json:"reason,omitempty"`
	Time      *string                  `json:"time,omitempty"`
	Validator *ResponsesShortValidator `json:"validator,omitempty"`
}

ResponsesJail struct for ResponsesJail

func NewResponsesJail

func NewResponsesJail() *ResponsesJail

NewResponsesJail instantiates a new ResponsesJail 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

func NewResponsesJailWithDefaults

func NewResponsesJailWithDefaults() *ResponsesJail

NewResponsesJailWithDefaults instantiates a new ResponsesJail 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

func (*ResponsesJail) GetBurned

func (o *ResponsesJail) GetBurned() string

GetBurned returns the Burned field value if set, zero value otherwise.

func (*ResponsesJail) GetBurnedOk

func (o *ResponsesJail) GetBurnedOk() (*string, bool)

GetBurnedOk returns a tuple with the Burned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesJail) GetHeight

func (o *ResponsesJail) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesJail) GetHeightOk

func (o *ResponsesJail) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesJail) GetReason

func (o *ResponsesJail) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ResponsesJail) GetReasonOk

func (o *ResponsesJail) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesJail) GetTime

func (o *ResponsesJail) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesJail) GetTimeOk

func (o *ResponsesJail) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesJail) GetValidator

func (o *ResponsesJail) GetValidator() ResponsesShortValidator

GetValidator returns the Validator field value if set, zero value otherwise.

func (*ResponsesJail) GetValidatorOk

func (o *ResponsesJail) GetValidatorOk() (*ResponsesShortValidator, bool)

GetValidatorOk returns a tuple with the Validator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesJail) HasBurned

func (o *ResponsesJail) HasBurned() bool

HasBurned returns a boolean if a field has been set.

func (*ResponsesJail) HasHeight

func (o *ResponsesJail) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesJail) HasReason

func (o *ResponsesJail) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ResponsesJail) HasTime

func (o *ResponsesJail) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesJail) HasValidator

func (o *ResponsesJail) HasValidator() bool

HasValidator returns a boolean if a field has been set.

func (ResponsesJail) MarshalJSON

func (o ResponsesJail) MarshalJSON() ([]byte, error)

func (*ResponsesJail) SetBurned

func (o *ResponsesJail) SetBurned(v string)

SetBurned gets a reference to the given string and assigns it to the Burned field.

func (*ResponsesJail) SetHeight

func (o *ResponsesJail) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesJail) SetReason

func (o *ResponsesJail) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*ResponsesJail) SetTime

func (o *ResponsesJail) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (*ResponsesJail) SetValidator

func (o *ResponsesJail) SetValidator(v ResponsesShortValidator)

SetValidator gets a reference to the given ResponsesShortValidator and assigns it to the Validator field.

func (ResponsesJail) ToMap

func (o ResponsesJail) ToMap() (map[string]interface{}, error)

type ResponsesLightBlobLog

type ResponsesLightBlobLog struct {
	Commitment  *string    `json:"commitment,omitempty"`
	ContentType *string    `json:"content_type,omitempty"`
	Height      *int32     `json:"height,omitempty"`
	Id          *int32     `json:"id,omitempty"`
	Namespace   *string    `json:"namespace,omitempty"`
	Signer      *string    `json:"signer,omitempty"`
	Size        *int32     `json:"size,omitempty"`
	Time        *time.Time `json:"time,omitempty"`
	TxHash      **os.File  `json:"tx_hash,omitempty"`
}

ResponsesLightBlobLog struct for ResponsesLightBlobLog

func NewResponsesLightBlobLog

func NewResponsesLightBlobLog() *ResponsesLightBlobLog

NewResponsesLightBlobLog instantiates a new ResponsesLightBlobLog 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

func NewResponsesLightBlobLogWithDefaults

func NewResponsesLightBlobLogWithDefaults() *ResponsesLightBlobLog

NewResponsesLightBlobLogWithDefaults instantiates a new ResponsesLightBlobLog 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

func (*ResponsesLightBlobLog) GetCommitment

func (o *ResponsesLightBlobLog) GetCommitment() string

GetCommitment returns the Commitment field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetCommitmentOk

func (o *ResponsesLightBlobLog) GetCommitmentOk() (*string, bool)

GetCommitmentOk returns a tuple with the Commitment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetContentType

func (o *ResponsesLightBlobLog) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetContentTypeOk

func (o *ResponsesLightBlobLog) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetHeight

func (o *ResponsesLightBlobLog) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetHeightOk

func (o *ResponsesLightBlobLog) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetId

func (o *ResponsesLightBlobLog) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetIdOk

func (o *ResponsesLightBlobLog) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetNamespace

func (o *ResponsesLightBlobLog) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetNamespaceOk

func (o *ResponsesLightBlobLog) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetSigner

func (o *ResponsesLightBlobLog) GetSigner() string

GetSigner returns the Signer field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetSignerOk

func (o *ResponsesLightBlobLog) GetSignerOk() (*string, bool)

GetSignerOk returns a tuple with the Signer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetSize

func (o *ResponsesLightBlobLog) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetSizeOk

func (o *ResponsesLightBlobLog) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetTime

func (o *ResponsesLightBlobLog) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetTimeOk

func (o *ResponsesLightBlobLog) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) GetTxHash

func (o *ResponsesLightBlobLog) GetTxHash() *os.File

GetTxHash returns the TxHash field value if set, zero value otherwise.

func (*ResponsesLightBlobLog) GetTxHashOk

func (o *ResponsesLightBlobLog) GetTxHashOk() (**os.File, bool)

GetTxHashOk returns a tuple with the TxHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesLightBlobLog) HasCommitment

func (o *ResponsesLightBlobLog) HasCommitment() bool

HasCommitment returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasContentType

func (o *ResponsesLightBlobLog) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasHeight

func (o *ResponsesLightBlobLog) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasId

func (o *ResponsesLightBlobLog) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasNamespace

func (o *ResponsesLightBlobLog) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasSigner

func (o *ResponsesLightBlobLog) HasSigner() bool

HasSigner returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasSize

func (o *ResponsesLightBlobLog) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasTime

func (o *ResponsesLightBlobLog) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesLightBlobLog) HasTxHash

func (o *ResponsesLightBlobLog) HasTxHash() bool

HasTxHash returns a boolean if a field has been set.

func (ResponsesLightBlobLog) MarshalJSON

func (o ResponsesLightBlobLog) MarshalJSON() ([]byte, error)

func (*ResponsesLightBlobLog) SetCommitment

func (o *ResponsesLightBlobLog) SetCommitment(v string)

SetCommitment gets a reference to the given string and assigns it to the Commitment field.

func (*ResponsesLightBlobLog) SetContentType

func (o *ResponsesLightBlobLog) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*ResponsesLightBlobLog) SetHeight

func (o *ResponsesLightBlobLog) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesLightBlobLog) SetId

func (o *ResponsesLightBlobLog) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesLightBlobLog) SetNamespace

func (o *ResponsesLightBlobLog) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*ResponsesLightBlobLog) SetSigner

func (o *ResponsesLightBlobLog) SetSigner(v string)

SetSigner gets a reference to the given string and assigns it to the Signer field.

func (*ResponsesLightBlobLog) SetSize

func (o *ResponsesLightBlobLog) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesLightBlobLog) SetTime

func (o *ResponsesLightBlobLog) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesLightBlobLog) SetTxHash

func (o *ResponsesLightBlobLog) SetTxHash(v *os.File)

SetTxHash gets a reference to the given *os.File and assigns it to the TxHash field.

func (ResponsesLightBlobLog) ToMap

func (o ResponsesLightBlobLog) ToMap() (map[string]interface{}, error)

type ResponsesMessage

type ResponsesMessage struct {
	Data     map[string]map[string]interface{} `json:"data,omitempty"`
	Height   *int64                            `json:"height,omitempty"`
	Id       *int64                            `json:"id,omitempty"`
	Position *int64                            `json:"position,omitempty"`
	Size     *int32                            `json:"size,omitempty"`
	Time     *time.Time                        `json:"time,omitempty"`
	Tx       *ResponsesTx                      `json:"tx,omitempty"`
	TxId     *int64                            `json:"tx_id,omitempty"`
	Type     *TypesMsgType                     `json:"type,omitempty"`
}

ResponsesMessage struct for ResponsesMessage

func NewResponsesMessage

func NewResponsesMessage() *ResponsesMessage

NewResponsesMessage instantiates a new ResponsesMessage 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

func NewResponsesMessageWithDefaults

func NewResponsesMessageWithDefaults() *ResponsesMessage

NewResponsesMessageWithDefaults instantiates a new ResponsesMessage 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

func (*ResponsesMessage) GetData

func (o *ResponsesMessage) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ResponsesMessage) GetDataOk

func (o *ResponsesMessage) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetHeight

func (o *ResponsesMessage) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesMessage) GetHeightOk

func (o *ResponsesMessage) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetId

func (o *ResponsesMessage) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesMessage) GetIdOk

func (o *ResponsesMessage) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetPosition

func (o *ResponsesMessage) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ResponsesMessage) GetPositionOk

func (o *ResponsesMessage) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetSize

func (o *ResponsesMessage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesMessage) GetSizeOk

func (o *ResponsesMessage) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetTime

func (o *ResponsesMessage) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesMessage) GetTimeOk

func (o *ResponsesMessage) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetTx

func (o *ResponsesMessage) GetTx() ResponsesTx

GetTx returns the Tx field value if set, zero value otherwise.

func (*ResponsesMessage) GetTxId

func (o *ResponsesMessage) GetTxId() int64

GetTxId returns the TxId field value if set, zero value otherwise.

func (*ResponsesMessage) GetTxIdOk

func (o *ResponsesMessage) GetTxIdOk() (*int64, bool)

GetTxIdOk returns a tuple with the TxId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetTxOk

func (o *ResponsesMessage) GetTxOk() (*ResponsesTx, bool)

GetTxOk returns a tuple with the Tx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) GetType

func (o *ResponsesMessage) GetType() TypesMsgType

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesMessage) GetTypeOk

func (o *ResponsesMessage) GetTypeOk() (*TypesMsgType, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessage) HasData

func (o *ResponsesMessage) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponsesMessage) HasHeight

func (o *ResponsesMessage) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesMessage) HasId

func (o *ResponsesMessage) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesMessage) HasPosition

func (o *ResponsesMessage) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ResponsesMessage) HasSize

func (o *ResponsesMessage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesMessage) HasTime

func (o *ResponsesMessage) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesMessage) HasTx

func (o *ResponsesMessage) HasTx() bool

HasTx returns a boolean if a field has been set.

func (*ResponsesMessage) HasTxId

func (o *ResponsesMessage) HasTxId() bool

HasTxId returns a boolean if a field has been set.

func (*ResponsesMessage) HasType

func (o *ResponsesMessage) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesMessage) MarshalJSON

func (o ResponsesMessage) MarshalJSON() ([]byte, error)

func (*ResponsesMessage) SetData

func (o *ResponsesMessage) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (*ResponsesMessage) SetHeight

func (o *ResponsesMessage) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ResponsesMessage) SetId

func (o *ResponsesMessage) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesMessage) SetPosition

func (o *ResponsesMessage) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ResponsesMessage) SetSize

func (o *ResponsesMessage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesMessage) SetTime

func (o *ResponsesMessage) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesMessage) SetTx

func (o *ResponsesMessage) SetTx(v ResponsesTx)

SetTx gets a reference to the given ResponsesTx and assigns it to the Tx field.

func (*ResponsesMessage) SetTxId

func (o *ResponsesMessage) SetTxId(v int64)

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (*ResponsesMessage) SetType

func (o *ResponsesMessage) SetType(v TypesMsgType)

SetType gets a reference to the given TypesMsgType and assigns it to the Type field.

func (ResponsesMessage) ToMap

func (o ResponsesMessage) ToMap() (map[string]interface{}, error)

type ResponsesMessageForAddress

type ResponsesMessageForAddress struct {
	Data           map[string]map[string]interface{} `json:"data,omitempty"`
	Height         *int64                            `json:"height,omitempty"`
	Id             *int64                            `json:"id,omitempty"`
	InvocationType *TypesMsgAddressType              `json:"invocation_type,omitempty"`
	Position       *int64                            `json:"position,omitempty"`
	Size           *int32                            `json:"size,omitempty"`
	Time           *time.Time                        `json:"time,omitempty"`
	Tx             *ResponsesTxForAddress            `json:"tx,omitempty"`
	TxId           *int64                            `json:"tx_id,omitempty"`
	Type           *TypesMsgType                     `json:"type,omitempty"`
}

ResponsesMessageForAddress struct for ResponsesMessageForAddress

func NewResponsesMessageForAddress

func NewResponsesMessageForAddress() *ResponsesMessageForAddress

NewResponsesMessageForAddress instantiates a new ResponsesMessageForAddress 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

func NewResponsesMessageForAddressWithDefaults

func NewResponsesMessageForAddressWithDefaults() *ResponsesMessageForAddress

NewResponsesMessageForAddressWithDefaults instantiates a new ResponsesMessageForAddress 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

func (*ResponsesMessageForAddress) GetData

func (o *ResponsesMessageForAddress) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetDataOk

func (o *ResponsesMessageForAddress) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetHeight

func (o *ResponsesMessageForAddress) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetHeightOk

func (o *ResponsesMessageForAddress) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetId

func (o *ResponsesMessageForAddress) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetIdOk

func (o *ResponsesMessageForAddress) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetInvocationType

func (o *ResponsesMessageForAddress) GetInvocationType() TypesMsgAddressType

GetInvocationType returns the InvocationType field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetInvocationTypeOk

func (o *ResponsesMessageForAddress) GetInvocationTypeOk() (*TypesMsgAddressType, bool)

GetInvocationTypeOk returns a tuple with the InvocationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetPosition

func (o *ResponsesMessageForAddress) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetPositionOk

func (o *ResponsesMessageForAddress) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetSize

func (o *ResponsesMessageForAddress) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetSizeOk

func (o *ResponsesMessageForAddress) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetTime

func (o *ResponsesMessageForAddress) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetTimeOk

func (o *ResponsesMessageForAddress) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetTx

GetTx returns the Tx field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetTxId

func (o *ResponsesMessageForAddress) GetTxId() int64

GetTxId returns the TxId field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetTxIdOk

func (o *ResponsesMessageForAddress) GetTxIdOk() (*int64, bool)

GetTxIdOk returns a tuple with the TxId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetTxOk

GetTxOk returns a tuple with the Tx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesMessageForAddress) GetTypeOk

func (o *ResponsesMessageForAddress) GetTypeOk() (*TypesMsgType, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesMessageForAddress) HasData

func (o *ResponsesMessageForAddress) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasHeight

func (o *ResponsesMessageForAddress) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasId

func (o *ResponsesMessageForAddress) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasInvocationType

func (o *ResponsesMessageForAddress) HasInvocationType() bool

HasInvocationType returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasPosition

func (o *ResponsesMessageForAddress) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasSize

func (o *ResponsesMessageForAddress) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasTime

func (o *ResponsesMessageForAddress) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasTx

func (o *ResponsesMessageForAddress) HasTx() bool

HasTx returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasTxId

func (o *ResponsesMessageForAddress) HasTxId() bool

HasTxId returns a boolean if a field has been set.

func (*ResponsesMessageForAddress) HasType

func (o *ResponsesMessageForAddress) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesMessageForAddress) MarshalJSON

func (o ResponsesMessageForAddress) MarshalJSON() ([]byte, error)

func (*ResponsesMessageForAddress) SetData

func (o *ResponsesMessageForAddress) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (*ResponsesMessageForAddress) SetHeight

func (o *ResponsesMessageForAddress) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ResponsesMessageForAddress) SetId

func (o *ResponsesMessageForAddress) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesMessageForAddress) SetInvocationType

func (o *ResponsesMessageForAddress) SetInvocationType(v TypesMsgAddressType)

SetInvocationType gets a reference to the given TypesMsgAddressType and assigns it to the InvocationType field.

func (*ResponsesMessageForAddress) SetPosition

func (o *ResponsesMessageForAddress) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ResponsesMessageForAddress) SetSize

func (o *ResponsesMessageForAddress) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesMessageForAddress) SetTime

func (o *ResponsesMessageForAddress) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesMessageForAddress) SetTx

SetTx gets a reference to the given ResponsesTxForAddress and assigns it to the Tx field.

func (*ResponsesMessageForAddress) SetTxId

func (o *ResponsesMessageForAddress) SetTxId(v int64)

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (*ResponsesMessageForAddress) SetType

SetType gets a reference to the given TypesMsgType and assigns it to the Type field.

func (ResponsesMessageForAddress) ToMap

func (o ResponsesMessageForAddress) ToMap() (map[string]interface{}, error)

type ResponsesNamespace

type ResponsesNamespace struct {
	BlobsCount      *int32     `json:"blobs_count,omitempty"`
	Hash            *string    `json:"hash,omitempty"`
	Id              *int32     `json:"id,omitempty"`
	LastHeight      *int64     `json:"last_height,omitempty"`
	LastMessageTime *time.Time `json:"last_message_time,omitempty"`
	Name            *string    `json:"name,omitempty"`
	NamespaceId     **os.File  `json:"namespace_id,omitempty"`
	PfbCount        *int32     `json:"pfb_count,omitempty"`
	Reserved        *bool      `json:"reserved,omitempty"`
	Size            *int32     `json:"size,omitempty"`
	Version         *int32     `json:"version,omitempty"`
}

ResponsesNamespace struct for ResponsesNamespace

func NewResponsesNamespace

func NewResponsesNamespace() *ResponsesNamespace

NewResponsesNamespace instantiates a new ResponsesNamespace 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

func NewResponsesNamespaceWithDefaults

func NewResponsesNamespaceWithDefaults() *ResponsesNamespace

NewResponsesNamespaceWithDefaults instantiates a new ResponsesNamespace 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

func (*ResponsesNamespace) GetBlobsCount

func (o *ResponsesNamespace) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesNamespace) GetBlobsCountOk

func (o *ResponsesNamespace) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetHash

func (o *ResponsesNamespace) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesNamespace) GetHashOk

func (o *ResponsesNamespace) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetId

func (o *ResponsesNamespace) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesNamespace) GetIdOk

func (o *ResponsesNamespace) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetLastHeight

func (o *ResponsesNamespace) GetLastHeight() int64

GetLastHeight returns the LastHeight field value if set, zero value otherwise.

func (*ResponsesNamespace) GetLastHeightOk

func (o *ResponsesNamespace) GetLastHeightOk() (*int64, bool)

GetLastHeightOk returns a tuple with the LastHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetLastMessageTime

func (o *ResponsesNamespace) GetLastMessageTime() time.Time

GetLastMessageTime returns the LastMessageTime field value if set, zero value otherwise.

func (*ResponsesNamespace) GetLastMessageTimeOk

func (o *ResponsesNamespace) GetLastMessageTimeOk() (*time.Time, bool)

GetLastMessageTimeOk returns a tuple with the LastMessageTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetName

func (o *ResponsesNamespace) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesNamespace) GetNameOk

func (o *ResponsesNamespace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetNamespaceId

func (o *ResponsesNamespace) GetNamespaceId() *os.File

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*ResponsesNamespace) GetNamespaceIdOk

func (o *ResponsesNamespace) GetNamespaceIdOk() (**os.File, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetPfbCount

func (o *ResponsesNamespace) GetPfbCount() int32

GetPfbCount returns the PfbCount field value if set, zero value otherwise.

func (*ResponsesNamespace) GetPfbCountOk

func (o *ResponsesNamespace) GetPfbCountOk() (*int32, bool)

GetPfbCountOk returns a tuple with the PfbCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetReserved

func (o *ResponsesNamespace) GetReserved() bool

GetReserved returns the Reserved field value if set, zero value otherwise.

func (*ResponsesNamespace) GetReservedOk

func (o *ResponsesNamespace) GetReservedOk() (*bool, bool)

GetReservedOk returns a tuple with the Reserved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetSize

func (o *ResponsesNamespace) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesNamespace) GetSizeOk

func (o *ResponsesNamespace) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) GetVersion

func (o *ResponsesNamespace) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*ResponsesNamespace) GetVersionOk

func (o *ResponsesNamespace) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespace) HasBlobsCount

func (o *ResponsesNamespace) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesNamespace) HasHash

func (o *ResponsesNamespace) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesNamespace) HasId

func (o *ResponsesNamespace) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesNamespace) HasLastHeight

func (o *ResponsesNamespace) HasLastHeight() bool

HasLastHeight returns a boolean if a field has been set.

func (*ResponsesNamespace) HasLastMessageTime

func (o *ResponsesNamespace) HasLastMessageTime() bool

HasLastMessageTime returns a boolean if a field has been set.

func (*ResponsesNamespace) HasName

func (o *ResponsesNamespace) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesNamespace) HasNamespaceId

func (o *ResponsesNamespace) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*ResponsesNamespace) HasPfbCount

func (o *ResponsesNamespace) HasPfbCount() bool

HasPfbCount returns a boolean if a field has been set.

func (*ResponsesNamespace) HasReserved

func (o *ResponsesNamespace) HasReserved() bool

HasReserved returns a boolean if a field has been set.

func (*ResponsesNamespace) HasSize

func (o *ResponsesNamespace) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesNamespace) HasVersion

func (o *ResponsesNamespace) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ResponsesNamespace) MarshalJSON

func (o ResponsesNamespace) MarshalJSON() ([]byte, error)

func (*ResponsesNamespace) SetBlobsCount

func (o *ResponsesNamespace) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesNamespace) SetHash

func (o *ResponsesNamespace) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*ResponsesNamespace) SetId

func (o *ResponsesNamespace) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesNamespace) SetLastHeight

func (o *ResponsesNamespace) SetLastHeight(v int64)

SetLastHeight gets a reference to the given int64 and assigns it to the LastHeight field.

func (*ResponsesNamespace) SetLastMessageTime

func (o *ResponsesNamespace) SetLastMessageTime(v time.Time)

SetLastMessageTime gets a reference to the given time.Time and assigns it to the LastMessageTime field.

func (*ResponsesNamespace) SetName

func (o *ResponsesNamespace) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesNamespace) SetNamespaceId

func (o *ResponsesNamespace) SetNamespaceId(v *os.File)

SetNamespaceId gets a reference to the given *os.File and assigns it to the NamespaceId field.

func (*ResponsesNamespace) SetPfbCount

func (o *ResponsesNamespace) SetPfbCount(v int32)

SetPfbCount gets a reference to the given int32 and assigns it to the PfbCount field.

func (*ResponsesNamespace) SetReserved

func (o *ResponsesNamespace) SetReserved(v bool)

SetReserved gets a reference to the given bool and assigns it to the Reserved field.

func (*ResponsesNamespace) SetSize

func (o *ResponsesNamespace) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesNamespace) SetVersion

func (o *ResponsesNamespace) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (ResponsesNamespace) ToMap

func (o ResponsesNamespace) ToMap() (map[string]interface{}, error)

type ResponsesNamespaceKind

type ResponsesNamespaceKind string

ResponsesNamespaceKind the model 'ResponsesNamespaceKind'

const (
	PayForBlobNamespace      ResponsesNamespaceKind = "pay_for_blob"
	TailPaddingNamespace     ResponsesNamespaceKind = "tail_padding"
	TxNamespace              ResponsesNamespaceKind = "tx"
	ParitySharesNamespace    ResponsesNamespaceKind = "parity_shares"
	PrimaryReservedNamespace ResponsesNamespaceKind = "primary_reserved_padding"
	DefaultNamespace         ResponsesNamespaceKind = "namespace"
)

List of responses.NamespaceKind

func NewResponsesNamespaceKindFromValue

func NewResponsesNamespaceKindFromValue(v string) (*ResponsesNamespaceKind, error)

NewResponsesNamespaceKindFromValue returns a pointer to a valid ResponsesNamespaceKind for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResponsesNamespaceKind) IsValid

func (v ResponsesNamespaceKind) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResponsesNamespaceKind) Ptr

Ptr returns reference to responses.NamespaceKind value

func (*ResponsesNamespaceKind) UnmarshalJSON

func (v *ResponsesNamespaceKind) UnmarshalJSON(src []byte) error

type ResponsesNamespaceMessage

type ResponsesNamespaceMessage struct {
	Data      map[string]map[string]interface{} `json:"data,omitempty"`
	Height    *int64                            `json:"height,omitempty"`
	Id        *int64                            `json:"id,omitempty"`
	Namespace *ResponsesNamespace               `json:"namespace,omitempty"`
	Position  *int64                            `json:"position,omitempty"`
	Time      *time.Time                        `json:"time,omitempty"`
	Tx        *ResponsesTx                      `json:"tx,omitempty"`
	Type      *string                           `json:"type,omitempty"`
}

ResponsesNamespaceMessage struct for ResponsesNamespaceMessage

func NewResponsesNamespaceMessage

func NewResponsesNamespaceMessage() *ResponsesNamespaceMessage

NewResponsesNamespaceMessage instantiates a new ResponsesNamespaceMessage 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

func NewResponsesNamespaceMessageWithDefaults

func NewResponsesNamespaceMessageWithDefaults() *ResponsesNamespaceMessage

NewResponsesNamespaceMessageWithDefaults instantiates a new ResponsesNamespaceMessage 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

func (*ResponsesNamespaceMessage) GetData

func (o *ResponsesNamespaceMessage) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetDataOk

func (o *ResponsesNamespaceMessage) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetHeight

func (o *ResponsesNamespaceMessage) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetHeightOk

func (o *ResponsesNamespaceMessage) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetId

func (o *ResponsesNamespaceMessage) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetIdOk

func (o *ResponsesNamespaceMessage) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetNamespace

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetNamespaceOk

func (o *ResponsesNamespaceMessage) GetNamespaceOk() (*ResponsesNamespace, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetPosition

func (o *ResponsesNamespaceMessage) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetPositionOk

func (o *ResponsesNamespaceMessage) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetTime

func (o *ResponsesNamespaceMessage) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetTimeOk

func (o *ResponsesNamespaceMessage) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetTx

GetTx returns the Tx field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetTxOk

func (o *ResponsesNamespaceMessage) GetTxOk() (*ResponsesTx, bool)

GetTxOk returns a tuple with the Tx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) GetType

func (o *ResponsesNamespaceMessage) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesNamespaceMessage) GetTypeOk

func (o *ResponsesNamespaceMessage) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceMessage) HasData

func (o *ResponsesNamespaceMessage) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasHeight

func (o *ResponsesNamespaceMessage) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasId

func (o *ResponsesNamespaceMessage) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasNamespace

func (o *ResponsesNamespaceMessage) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasPosition

func (o *ResponsesNamespaceMessage) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasTime

func (o *ResponsesNamespaceMessage) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasTx

func (o *ResponsesNamespaceMessage) HasTx() bool

HasTx returns a boolean if a field has been set.

func (*ResponsesNamespaceMessage) HasType

func (o *ResponsesNamespaceMessage) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesNamespaceMessage) MarshalJSON

func (o ResponsesNamespaceMessage) MarshalJSON() ([]byte, error)

func (*ResponsesNamespaceMessage) SetData

func (o *ResponsesNamespaceMessage) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (*ResponsesNamespaceMessage) SetHeight

func (o *ResponsesNamespaceMessage) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ResponsesNamespaceMessage) SetId

func (o *ResponsesNamespaceMessage) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesNamespaceMessage) SetNamespace

func (o *ResponsesNamespaceMessage) SetNamespace(v ResponsesNamespace)

SetNamespace gets a reference to the given ResponsesNamespace and assigns it to the Namespace field.

func (*ResponsesNamespaceMessage) SetPosition

func (o *ResponsesNamespaceMessage) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ResponsesNamespaceMessage) SetTime

func (o *ResponsesNamespaceMessage) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesNamespaceMessage) SetTx

SetTx gets a reference to the given ResponsesTx and assigns it to the Tx field.

func (*ResponsesNamespaceMessage) SetType

func (o *ResponsesNamespaceMessage) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ResponsesNamespaceMessage) ToMap

func (o ResponsesNamespaceMessage) ToMap() (map[string]interface{}, error)

type ResponsesNamespaceUsage

type ResponsesNamespaceUsage struct {
	Name        *string   `json:"name,omitempty"`
	NamespaceId **os.File `json:"namespace_id,omitempty"`
	Size        *float32  `json:"size,omitempty"`
	Version     *int32    `json:"version,omitempty"`
}

ResponsesNamespaceUsage struct for ResponsesNamespaceUsage

func NewResponsesNamespaceUsage

func NewResponsesNamespaceUsage() *ResponsesNamespaceUsage

NewResponsesNamespaceUsage instantiates a new ResponsesNamespaceUsage 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

func NewResponsesNamespaceUsageWithDefaults

func NewResponsesNamespaceUsageWithDefaults() *ResponsesNamespaceUsage

NewResponsesNamespaceUsageWithDefaults instantiates a new ResponsesNamespaceUsage 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

func (*ResponsesNamespaceUsage) GetName

func (o *ResponsesNamespaceUsage) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesNamespaceUsage) GetNameOk

func (o *ResponsesNamespaceUsage) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceUsage) GetNamespaceId

func (o *ResponsesNamespaceUsage) GetNamespaceId() *os.File

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*ResponsesNamespaceUsage) GetNamespaceIdOk

func (o *ResponsesNamespaceUsage) GetNamespaceIdOk() (**os.File, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceUsage) GetSize

func (o *ResponsesNamespaceUsage) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesNamespaceUsage) GetSizeOk

func (o *ResponsesNamespaceUsage) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceUsage) GetVersion

func (o *ResponsesNamespaceUsage) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*ResponsesNamespaceUsage) GetVersionOk

func (o *ResponsesNamespaceUsage) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesNamespaceUsage) HasName

func (o *ResponsesNamespaceUsage) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesNamespaceUsage) HasNamespaceId

func (o *ResponsesNamespaceUsage) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*ResponsesNamespaceUsage) HasSize

func (o *ResponsesNamespaceUsage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesNamespaceUsage) HasVersion

func (o *ResponsesNamespaceUsage) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ResponsesNamespaceUsage) MarshalJSON

func (o ResponsesNamespaceUsage) MarshalJSON() ([]byte, error)

func (*ResponsesNamespaceUsage) SetName

func (o *ResponsesNamespaceUsage) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesNamespaceUsage) SetNamespaceId

func (o *ResponsesNamespaceUsage) SetNamespaceId(v *os.File)

SetNamespaceId gets a reference to the given *os.File and assigns it to the NamespaceId field.

func (*ResponsesNamespaceUsage) SetSize

func (o *ResponsesNamespaceUsage) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*ResponsesNamespaceUsage) SetVersion

func (o *ResponsesNamespaceUsage) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (ResponsesNamespaceUsage) ToMap

func (o ResponsesNamespaceUsage) ToMap() (map[string]interface{}, error)

type ResponsesODS

type ResponsesODS struct {
	Items []ResponsesODSItem `json:"items,omitempty"`
	Width *int32             `json:"width,omitempty"`
}

ResponsesODS struct for ResponsesODS

func NewResponsesODS

func NewResponsesODS() *ResponsesODS

NewResponsesODS instantiates a new ResponsesODS 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

func NewResponsesODSWithDefaults

func NewResponsesODSWithDefaults() *ResponsesODS

NewResponsesODSWithDefaults instantiates a new ResponsesODS 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

func (*ResponsesODS) GetItems

func (o *ResponsesODS) GetItems() []ResponsesODSItem

GetItems returns the Items field value if set, zero value otherwise.

func (*ResponsesODS) GetItemsOk

func (o *ResponsesODS) GetItemsOk() ([]ResponsesODSItem, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODS) GetWidth

func (o *ResponsesODS) GetWidth() int32

GetWidth returns the Width field value if set, zero value otherwise.

func (*ResponsesODS) GetWidthOk

func (o *ResponsesODS) GetWidthOk() (*int32, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODS) HasItems

func (o *ResponsesODS) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ResponsesODS) HasWidth

func (o *ResponsesODS) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ResponsesODS) MarshalJSON

func (o ResponsesODS) MarshalJSON() ([]byte, error)

func (*ResponsesODS) SetItems

func (o *ResponsesODS) SetItems(v []ResponsesODSItem)

SetItems gets a reference to the given []ResponsesODSItem and assigns it to the Items field.

func (*ResponsesODS) SetWidth

func (o *ResponsesODS) SetWidth(v int32)

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ResponsesODS) ToMap

func (o ResponsesODS) ToMap() (map[string]interface{}, error)

type ResponsesODSItem

type ResponsesODSItem struct {
	From      []int32                 `json:"from,omitempty"`
	Namespace *string                 `json:"namespace,omitempty"`
	To        []int32                 `json:"to,omitempty"`
	Type      *ResponsesNamespaceKind `json:"type,omitempty"`
}

ResponsesODSItem struct for ResponsesODSItem

func NewResponsesODSItem

func NewResponsesODSItem() *ResponsesODSItem

NewResponsesODSItem instantiates a new ResponsesODSItem 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

func NewResponsesODSItemWithDefaults

func NewResponsesODSItemWithDefaults() *ResponsesODSItem

NewResponsesODSItemWithDefaults instantiates a new ResponsesODSItem 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

func (*ResponsesODSItem) GetFrom

func (o *ResponsesODSItem) GetFrom() []int32

GetFrom returns the From field value if set, zero value otherwise.

func (*ResponsesODSItem) GetFromOk

func (o *ResponsesODSItem) GetFromOk() ([]int32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODSItem) GetNamespace

func (o *ResponsesODSItem) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResponsesODSItem) GetNamespaceOk

func (o *ResponsesODSItem) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODSItem) GetTo

func (o *ResponsesODSItem) GetTo() []int32

GetTo returns the To field value if set, zero value otherwise.

func (*ResponsesODSItem) GetToOk

func (o *ResponsesODSItem) GetToOk() ([]int32, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODSItem) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesODSItem) GetTypeOk

func (o *ResponsesODSItem) GetTypeOk() (*ResponsesNamespaceKind, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesODSItem) HasFrom

func (o *ResponsesODSItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*ResponsesODSItem) HasNamespace

func (o *ResponsesODSItem) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResponsesODSItem) HasTo

func (o *ResponsesODSItem) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*ResponsesODSItem) HasType

func (o *ResponsesODSItem) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesODSItem) MarshalJSON

func (o ResponsesODSItem) MarshalJSON() ([]byte, error)

func (*ResponsesODSItem) SetFrom

func (o *ResponsesODSItem) SetFrom(v []int32)

SetFrom gets a reference to the given []int32 and assigns it to the From field.

func (*ResponsesODSItem) SetNamespace

func (o *ResponsesODSItem) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*ResponsesODSItem) SetTo

func (o *ResponsesODSItem) SetTo(v []int32)

SetTo gets a reference to the given []int32 and assigns it to the To field.

func (*ResponsesODSItem) SetType

SetType gets a reference to the given ResponsesNamespaceKind and assigns it to the Type field.

func (ResponsesODSItem) ToMap

func (o ResponsesODSItem) ToMap() (map[string]interface{}, error)

type ResponsesPrice

type ResponsesPrice struct {
	Close *string    `json:"close,omitempty"`
	High  *string    `json:"high,omitempty"`
	Low   *string    `json:"low,omitempty"`
	Open  *string    `json:"open,omitempty"`
	Time  *time.Time `json:"time,omitempty"`
}

ResponsesPrice struct for ResponsesPrice

func NewResponsesPrice

func NewResponsesPrice() *ResponsesPrice

NewResponsesPrice instantiates a new ResponsesPrice 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

func NewResponsesPriceWithDefaults

func NewResponsesPriceWithDefaults() *ResponsesPrice

NewResponsesPriceWithDefaults instantiates a new ResponsesPrice 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

func (*ResponsesPrice) GetClose

func (o *ResponsesPrice) GetClose() string

GetClose returns the Close field value if set, zero value otherwise.

func (*ResponsesPrice) GetCloseOk

func (o *ResponsesPrice) GetCloseOk() (*string, bool)

GetCloseOk returns a tuple with the Close field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesPrice) GetHigh

func (o *ResponsesPrice) GetHigh() string

GetHigh returns the High field value if set, zero value otherwise.

func (*ResponsesPrice) GetHighOk

func (o *ResponsesPrice) GetHighOk() (*string, bool)

GetHighOk returns a tuple with the High field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesPrice) GetLow

func (o *ResponsesPrice) GetLow() string

GetLow returns the Low field value if set, zero value otherwise.

func (*ResponsesPrice) GetLowOk

func (o *ResponsesPrice) GetLowOk() (*string, bool)

GetLowOk returns a tuple with the Low field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesPrice) GetOpen

func (o *ResponsesPrice) GetOpen() string

GetOpen returns the Open field value if set, zero value otherwise.

func (*ResponsesPrice) GetOpenOk

func (o *ResponsesPrice) GetOpenOk() (*string, bool)

GetOpenOk returns a tuple with the Open field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesPrice) GetTime

func (o *ResponsesPrice) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesPrice) GetTimeOk

func (o *ResponsesPrice) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesPrice) HasClose

func (o *ResponsesPrice) HasClose() bool

HasClose returns a boolean if a field has been set.

func (*ResponsesPrice) HasHigh

func (o *ResponsesPrice) HasHigh() bool

HasHigh returns a boolean if a field has been set.

func (*ResponsesPrice) HasLow

func (o *ResponsesPrice) HasLow() bool

HasLow returns a boolean if a field has been set.

func (*ResponsesPrice) HasOpen

func (o *ResponsesPrice) HasOpen() bool

HasOpen returns a boolean if a field has been set.

func (*ResponsesPrice) HasTime

func (o *ResponsesPrice) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ResponsesPrice) MarshalJSON

func (o ResponsesPrice) MarshalJSON() ([]byte, error)

func (*ResponsesPrice) SetClose

func (o *ResponsesPrice) SetClose(v string)

SetClose gets a reference to the given string and assigns it to the Close field.

func (*ResponsesPrice) SetHigh

func (o *ResponsesPrice) SetHigh(v string)

SetHigh gets a reference to the given string and assigns it to the High field.

func (*ResponsesPrice) SetLow

func (o *ResponsesPrice) SetLow(v string)

SetLow gets a reference to the given string and assigns it to the Low field.

func (*ResponsesPrice) SetOpen

func (o *ResponsesPrice) SetOpen(v string)

SetOpen gets a reference to the given string and assigns it to the Open field.

func (*ResponsesPrice) SetTime

func (o *ResponsesPrice) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (ResponsesPrice) ToMap

func (o ResponsesPrice) ToMap() (map[string]interface{}, error)

type ResponsesRedelegation

type ResponsesRedelegation struct {
	Amount         *string                  `json:"amount,omitempty"`
	CompletionTime *string                  `json:"completion_time,omitempty"`
	Delegator      *string                  `json:"delegator,omitempty"`
	Destination    *ResponsesShortValidator `json:"destination,omitempty"`
	Height         *int32                   `json:"height,omitempty"`
	Source         *ResponsesShortValidator `json:"source,omitempty"`
	Time           *string                  `json:"time,omitempty"`
}

ResponsesRedelegation struct for ResponsesRedelegation

func NewResponsesRedelegation

func NewResponsesRedelegation() *ResponsesRedelegation

NewResponsesRedelegation instantiates a new ResponsesRedelegation 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

func NewResponsesRedelegationWithDefaults

func NewResponsesRedelegationWithDefaults() *ResponsesRedelegation

NewResponsesRedelegationWithDefaults instantiates a new ResponsesRedelegation 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

func (*ResponsesRedelegation) GetAmount

func (o *ResponsesRedelegation) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetAmountOk

func (o *ResponsesRedelegation) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetCompletionTime

func (o *ResponsesRedelegation) GetCompletionTime() string

GetCompletionTime returns the CompletionTime field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetCompletionTimeOk

func (o *ResponsesRedelegation) GetCompletionTimeOk() (*string, bool)

GetCompletionTimeOk returns a tuple with the CompletionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetDelegator

func (o *ResponsesRedelegation) GetDelegator() string

GetDelegator returns the Delegator field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetDelegatorOk

func (o *ResponsesRedelegation) GetDelegatorOk() (*string, bool)

GetDelegatorOk returns a tuple with the Delegator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetDestination

func (o *ResponsesRedelegation) GetDestination() ResponsesShortValidator

GetDestination returns the Destination field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetDestinationOk

func (o *ResponsesRedelegation) GetDestinationOk() (*ResponsesShortValidator, bool)

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetHeight

func (o *ResponsesRedelegation) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetHeightOk

func (o *ResponsesRedelegation) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetSource

GetSource returns the Source field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetSourceOk

func (o *ResponsesRedelegation) GetSourceOk() (*ResponsesShortValidator, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) GetTime

func (o *ResponsesRedelegation) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesRedelegation) GetTimeOk

func (o *ResponsesRedelegation) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRedelegation) HasAmount

func (o *ResponsesRedelegation) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasCompletionTime

func (o *ResponsesRedelegation) HasCompletionTime() bool

HasCompletionTime returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasDelegator

func (o *ResponsesRedelegation) HasDelegator() bool

HasDelegator returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasDestination

func (o *ResponsesRedelegation) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasHeight

func (o *ResponsesRedelegation) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasSource

func (o *ResponsesRedelegation) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*ResponsesRedelegation) HasTime

func (o *ResponsesRedelegation) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ResponsesRedelegation) MarshalJSON

func (o ResponsesRedelegation) MarshalJSON() ([]byte, error)

func (*ResponsesRedelegation) SetAmount

func (o *ResponsesRedelegation) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*ResponsesRedelegation) SetCompletionTime

func (o *ResponsesRedelegation) SetCompletionTime(v string)

SetCompletionTime gets a reference to the given string and assigns it to the CompletionTime field.

func (*ResponsesRedelegation) SetDelegator

func (o *ResponsesRedelegation) SetDelegator(v string)

SetDelegator gets a reference to the given string and assigns it to the Delegator field.

func (*ResponsesRedelegation) SetDestination

func (o *ResponsesRedelegation) SetDestination(v ResponsesShortValidator)

SetDestination gets a reference to the given ResponsesShortValidator and assigns it to the Destination field.

func (*ResponsesRedelegation) SetHeight

func (o *ResponsesRedelegation) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesRedelegation) SetSource

SetSource gets a reference to the given ResponsesShortValidator and assigns it to the Source field.

func (*ResponsesRedelegation) SetTime

func (o *ResponsesRedelegation) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (ResponsesRedelegation) ToMap

func (o ResponsesRedelegation) ToMap() (map[string]interface{}, error)

type ResponsesRollup

type ResponsesRollup struct {
	Bridge      *string  `json:"bridge,omitempty"`
	Category    *string  `json:"category,omitempty"`
	Compression *string  `json:"compression,omitempty"`
	DefiLama    *string  `json:"defi_lama,omitempty"`
	Description *string  `json:"description,omitempty"`
	Explorer    *string  `json:"explorer,omitempty"`
	Github      *string  `json:"github,omitempty"`
	Id          *int32   `json:"id,omitempty"`
	L2Beat      *string  `json:"l2_beat,omitempty"`
	Links       []string `json:"links,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Provider    *string  `json:"provider,omitempty"`
	Slug        *string  `json:"slug,omitempty"`
	Stack       *string  `json:"stack,omitempty"`
	Twitter     *string  `json:"twitter,omitempty"`
	Type        *string  `json:"type,omitempty"`
	Vm          *string  `json:"vm,omitempty"`
	Website     *string  `json:"website,omitempty"`
}

ResponsesRollup struct for ResponsesRollup

func NewResponsesRollup

func NewResponsesRollup() *ResponsesRollup

NewResponsesRollup instantiates a new ResponsesRollup 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

func NewResponsesRollupWithDefaults

func NewResponsesRollupWithDefaults() *ResponsesRollup

NewResponsesRollupWithDefaults instantiates a new ResponsesRollup 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

func (*ResponsesRollup) GetBridge

func (o *ResponsesRollup) GetBridge() string

GetBridge returns the Bridge field value if set, zero value otherwise.

func (*ResponsesRollup) GetBridgeOk

func (o *ResponsesRollup) GetBridgeOk() (*string, bool)

GetBridgeOk returns a tuple with the Bridge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetCategory added in v1.10.4

func (o *ResponsesRollup) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ResponsesRollup) GetCategoryOk added in v1.10.4

func (o *ResponsesRollup) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetCompression added in v1.10.4

func (o *ResponsesRollup) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*ResponsesRollup) GetCompressionOk added in v1.10.4

func (o *ResponsesRollup) GetCompressionOk() (*string, bool)

GetCompressionOk returns a tuple with the Compression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetDefiLama added in v1.10.17

func (o *ResponsesRollup) GetDefiLama() string

GetDefiLama returns the DefiLama field value if set, zero value otherwise.

func (*ResponsesRollup) GetDefiLamaOk added in v1.10.17

func (o *ResponsesRollup) GetDefiLamaOk() (*string, bool)

GetDefiLamaOk returns a tuple with the DefiLama field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetDescription

func (o *ResponsesRollup) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ResponsesRollup) GetDescriptionOk

func (o *ResponsesRollup) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetExplorer

func (o *ResponsesRollup) GetExplorer() string

GetExplorer returns the Explorer field value if set, zero value otherwise.

func (*ResponsesRollup) GetExplorerOk

func (o *ResponsesRollup) GetExplorerOk() (*string, bool)

GetExplorerOk returns a tuple with the Explorer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetGithub

func (o *ResponsesRollup) GetGithub() string

GetGithub returns the Github field value if set, zero value otherwise.

func (*ResponsesRollup) GetGithubOk

func (o *ResponsesRollup) GetGithubOk() (*string, bool)

GetGithubOk returns a tuple with the Github field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetId

func (o *ResponsesRollup) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesRollup) GetIdOk

func (o *ResponsesRollup) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetL2Beat

func (o *ResponsesRollup) GetL2Beat() string

GetL2Beat returns the L2Beat field value if set, zero value otherwise.

func (*ResponsesRollup) GetL2BeatOk

func (o *ResponsesRollup) GetL2BeatOk() (*string, bool)

GetL2BeatOk returns a tuple with the L2Beat field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollup) GetLinks() []string

GetLinks returns the Links field value if set, zero value otherwise.

func (*ResponsesRollup) GetLinksOk

func (o *ResponsesRollup) GetLinksOk() ([]string, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollup) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesRollup) GetLogoOk

func (o *ResponsesRollup) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetName

func (o *ResponsesRollup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesRollup) GetNameOk

func (o *ResponsesRollup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetProvider added in v1.10.4

func (o *ResponsesRollup) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*ResponsesRollup) GetProviderOk added in v1.10.4

func (o *ResponsesRollup) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetSlug

func (o *ResponsesRollup) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ResponsesRollup) GetSlugOk

func (o *ResponsesRollup) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetStack

func (o *ResponsesRollup) GetStack() string

GetStack returns the Stack field value if set, zero value otherwise.

func (*ResponsesRollup) GetStackOk

func (o *ResponsesRollup) GetStackOk() (*string, bool)

GetStackOk returns a tuple with the Stack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetTwitter

func (o *ResponsesRollup) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*ResponsesRollup) GetTwitterOk

func (o *ResponsesRollup) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetType added in v1.10.4

func (o *ResponsesRollup) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesRollup) GetTypeOk added in v1.10.4

func (o *ResponsesRollup) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetVm added in v1.10.4

func (o *ResponsesRollup) GetVm() string

GetVm returns the Vm field value if set, zero value otherwise.

func (*ResponsesRollup) GetVmOk added in v1.10.4

func (o *ResponsesRollup) GetVmOk() (*string, bool)

GetVmOk returns a tuple with the Vm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) GetWebsite

func (o *ResponsesRollup) GetWebsite() string

GetWebsite returns the Website field value if set, zero value otherwise.

func (*ResponsesRollup) GetWebsiteOk

func (o *ResponsesRollup) GetWebsiteOk() (*string, bool)

GetWebsiteOk returns a tuple with the Website field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollup) HasBridge

func (o *ResponsesRollup) HasBridge() bool

HasBridge returns a boolean if a field has been set.

func (*ResponsesRollup) HasCategory added in v1.10.4

func (o *ResponsesRollup) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ResponsesRollup) HasCompression added in v1.10.4

func (o *ResponsesRollup) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*ResponsesRollup) HasDefiLama added in v1.10.17

func (o *ResponsesRollup) HasDefiLama() bool

HasDefiLama returns a boolean if a field has been set.

func (*ResponsesRollup) HasDescription

func (o *ResponsesRollup) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ResponsesRollup) HasExplorer

func (o *ResponsesRollup) HasExplorer() bool

HasExplorer returns a boolean if a field has been set.

func (*ResponsesRollup) HasGithub

func (o *ResponsesRollup) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*ResponsesRollup) HasId

func (o *ResponsesRollup) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesRollup) HasL2Beat

func (o *ResponsesRollup) HasL2Beat() bool

HasL2Beat returns a boolean if a field has been set.

func (o *ResponsesRollup) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (o *ResponsesRollup) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesRollup) HasName

func (o *ResponsesRollup) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesRollup) HasProvider added in v1.10.4

func (o *ResponsesRollup) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*ResponsesRollup) HasSlug

func (o *ResponsesRollup) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*ResponsesRollup) HasStack

func (o *ResponsesRollup) HasStack() bool

HasStack returns a boolean if a field has been set.

func (*ResponsesRollup) HasTwitter

func (o *ResponsesRollup) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (*ResponsesRollup) HasType added in v1.10.4

func (o *ResponsesRollup) HasType() bool

HasType returns a boolean if a field has been set.

func (*ResponsesRollup) HasVm added in v1.10.4

func (o *ResponsesRollup) HasVm() bool

HasVm returns a boolean if a field has been set.

func (*ResponsesRollup) HasWebsite

func (o *ResponsesRollup) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (ResponsesRollup) MarshalJSON

func (o ResponsesRollup) MarshalJSON() ([]byte, error)

func (*ResponsesRollup) SetBridge

func (o *ResponsesRollup) SetBridge(v string)

SetBridge gets a reference to the given string and assigns it to the Bridge field.

func (*ResponsesRollup) SetCategory added in v1.10.4

func (o *ResponsesRollup) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ResponsesRollup) SetCompression added in v1.10.4

func (o *ResponsesRollup) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*ResponsesRollup) SetDefiLama added in v1.10.17

func (o *ResponsesRollup) SetDefiLama(v string)

SetDefiLama gets a reference to the given string and assigns it to the DefiLama field.

func (*ResponsesRollup) SetDescription

func (o *ResponsesRollup) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ResponsesRollup) SetExplorer

func (o *ResponsesRollup) SetExplorer(v string)

SetExplorer gets a reference to the given string and assigns it to the Explorer field.

func (*ResponsesRollup) SetGithub

func (o *ResponsesRollup) SetGithub(v string)

SetGithub gets a reference to the given string and assigns it to the Github field.

func (*ResponsesRollup) SetId

func (o *ResponsesRollup) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesRollup) SetL2Beat

func (o *ResponsesRollup) SetL2Beat(v string)

SetL2Beat gets a reference to the given string and assigns it to the L2Beat field.

func (o *ResponsesRollup) SetLinks(v []string)

SetLinks gets a reference to the given []string and assigns it to the Links field.

func (o *ResponsesRollup) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesRollup) SetName

func (o *ResponsesRollup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesRollup) SetProvider added in v1.10.4

func (o *ResponsesRollup) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*ResponsesRollup) SetSlug

func (o *ResponsesRollup) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*ResponsesRollup) SetStack

func (o *ResponsesRollup) SetStack(v string)

SetStack gets a reference to the given string and assigns it to the Stack field.

func (*ResponsesRollup) SetTwitter

func (o *ResponsesRollup) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (*ResponsesRollup) SetType added in v1.10.4

func (o *ResponsesRollup) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ResponsesRollup) SetVm added in v1.10.4

func (o *ResponsesRollup) SetVm(v string)

SetVm gets a reference to the given string and assigns it to the Vm field.

func (*ResponsesRollup) SetWebsite

func (o *ResponsesRollup) SetWebsite(v string)

SetWebsite gets a reference to the given string and assigns it to the Website field.

func (ResponsesRollup) ToMap

func (o ResponsesRollup) ToMap() (map[string]interface{}, error)

type ResponsesRollupAllSeriesItem

type ResponsesRollupAllSeriesItem struct {
	BlobsCount *int32     `json:"blobs_count,omitempty"`
	Fee        *string    `json:"fee,omitempty"`
	Name       *string    `json:"name,omitempty"`
	Size       *int32     `json:"size,omitempty"`
	Time       *time.Time `json:"time,omitempty"`
}

ResponsesRollupAllSeriesItem struct for ResponsesRollupAllSeriesItem

func NewResponsesRollupAllSeriesItem

func NewResponsesRollupAllSeriesItem() *ResponsesRollupAllSeriesItem

NewResponsesRollupAllSeriesItem instantiates a new ResponsesRollupAllSeriesItem 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

func NewResponsesRollupAllSeriesItemWithDefaults

func NewResponsesRollupAllSeriesItemWithDefaults() *ResponsesRollupAllSeriesItem

NewResponsesRollupAllSeriesItemWithDefaults instantiates a new ResponsesRollupAllSeriesItem 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

func (*ResponsesRollupAllSeriesItem) GetBlobsCount

func (o *ResponsesRollupAllSeriesItem) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetBlobsCountOk

func (o *ResponsesRollupAllSeriesItem) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupAllSeriesItem) GetFee

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetFeeOk

func (o *ResponsesRollupAllSeriesItem) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollupAllSeriesItem) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetLogoOk

func (o *ResponsesRollupAllSeriesItem) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupAllSeriesItem) GetName

func (o *ResponsesRollupAllSeriesItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetNameOk

func (o *ResponsesRollupAllSeriesItem) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupAllSeriesItem) GetSize

func (o *ResponsesRollupAllSeriesItem) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetSizeOk

func (o *ResponsesRollupAllSeriesItem) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupAllSeriesItem) GetTime

func (o *ResponsesRollupAllSeriesItem) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesRollupAllSeriesItem) GetTimeOk

func (o *ResponsesRollupAllSeriesItem) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupAllSeriesItem) HasBlobsCount

func (o *ResponsesRollupAllSeriesItem) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesRollupAllSeriesItem) HasFee

func (o *ResponsesRollupAllSeriesItem) HasFee() bool

HasFee returns a boolean if a field has been set.

func (o *ResponsesRollupAllSeriesItem) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesRollupAllSeriesItem) HasName

func (o *ResponsesRollupAllSeriesItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesRollupAllSeriesItem) HasSize

func (o *ResponsesRollupAllSeriesItem) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesRollupAllSeriesItem) HasTime

func (o *ResponsesRollupAllSeriesItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ResponsesRollupAllSeriesItem) MarshalJSON

func (o ResponsesRollupAllSeriesItem) MarshalJSON() ([]byte, error)

func (*ResponsesRollupAllSeriesItem) SetBlobsCount

func (o *ResponsesRollupAllSeriesItem) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesRollupAllSeriesItem) SetFee

func (o *ResponsesRollupAllSeriesItem) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (o *ResponsesRollupAllSeriesItem) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesRollupAllSeriesItem) SetName

func (o *ResponsesRollupAllSeriesItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesRollupAllSeriesItem) SetSize

func (o *ResponsesRollupAllSeriesItem) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesRollupAllSeriesItem) SetTime

func (o *ResponsesRollupAllSeriesItem) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (ResponsesRollupAllSeriesItem) ToMap

func (o ResponsesRollupAllSeriesItem) ToMap() (map[string]interface{}, error)

type ResponsesRollupGroupedStats added in v1.10.9

type ResponsesRollupGroupedStats struct {
	BlobsCount *int32  `json:"blobs_count,omitempty"`
	Fee        *string `json:"fee,omitempty"`
	Group      *string `json:"group,omitempty"`
	Size       *int32  `json:"size,omitempty"`
}

ResponsesRollupGroupedStats struct for ResponsesRollupGroupedStats

func NewResponsesRollupGroupedStats added in v1.10.9

func NewResponsesRollupGroupedStats() *ResponsesRollupGroupedStats

NewResponsesRollupGroupedStats instantiates a new ResponsesRollupGroupedStats 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

func NewResponsesRollupGroupedStatsWithDefaults added in v1.10.9

func NewResponsesRollupGroupedStatsWithDefaults() *ResponsesRollupGroupedStats

NewResponsesRollupGroupedStatsWithDefaults instantiates a new ResponsesRollupGroupedStats 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

func (*ResponsesRollupGroupedStats) GetBlobsCount added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesRollupGroupedStats) GetBlobsCountOk added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupGroupedStats) GetFee added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetFee() string

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesRollupGroupedStats) GetFeeOk added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupGroupedStats) GetGroup added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*ResponsesRollupGroupedStats) GetGroupOk added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetGroupOk() (*string, bool)

GetGroupOk returns a tuple with the Group field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupGroupedStats) GetSize added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesRollupGroupedStats) GetSizeOk added in v1.10.9

func (o *ResponsesRollupGroupedStats) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupGroupedStats) HasBlobsCount added in v1.10.9

func (o *ResponsesRollupGroupedStats) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesRollupGroupedStats) HasFee added in v1.10.9

func (o *ResponsesRollupGroupedStats) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesRollupGroupedStats) HasGroup added in v1.10.9

func (o *ResponsesRollupGroupedStats) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*ResponsesRollupGroupedStats) HasSize added in v1.10.9

func (o *ResponsesRollupGroupedStats) HasSize() bool

HasSize returns a boolean if a field has been set.

func (ResponsesRollupGroupedStats) MarshalJSON added in v1.10.9

func (o ResponsesRollupGroupedStats) MarshalJSON() ([]byte, error)

func (*ResponsesRollupGroupedStats) SetBlobsCount added in v1.10.9

func (o *ResponsesRollupGroupedStats) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesRollupGroupedStats) SetFee added in v1.10.9

func (o *ResponsesRollupGroupedStats) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (*ResponsesRollupGroupedStats) SetGroup added in v1.10.9

func (o *ResponsesRollupGroupedStats) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*ResponsesRollupGroupedStats) SetSize added in v1.10.9

func (o *ResponsesRollupGroupedStats) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (ResponsesRollupGroupedStats) ToMap added in v1.10.9

func (o ResponsesRollupGroupedStats) ToMap() (map[string]interface{}, error)

type ResponsesRollupStats24h

type ResponsesRollupStats24h struct {
	BlobsCount *int32  `json:"blobs_count,omitempty"`
	Fee        *int32  `json:"fee,omitempty"`
	Id         *int32  `json:"id,omitempty"`
	Name       *string `json:"name,omitempty"`
	Size       *int32  `json:"size,omitempty"`
}

ResponsesRollupStats24h struct for ResponsesRollupStats24h

func NewResponsesRollupStats24h

func NewResponsesRollupStats24h() *ResponsesRollupStats24h

NewResponsesRollupStats24h instantiates a new ResponsesRollupStats24h 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

func NewResponsesRollupStats24hWithDefaults

func NewResponsesRollupStats24hWithDefaults() *ResponsesRollupStats24h

NewResponsesRollupStats24hWithDefaults instantiates a new ResponsesRollupStats24h 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

func (*ResponsesRollupStats24h) GetBlobsCount

func (o *ResponsesRollupStats24h) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetBlobsCountOk

func (o *ResponsesRollupStats24h) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupStats24h) GetFee

func (o *ResponsesRollupStats24h) GetFee() int32

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetFeeOk

func (o *ResponsesRollupStats24h) GetFeeOk() (*int32, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupStats24h) GetId

func (o *ResponsesRollupStats24h) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetIdOk

func (o *ResponsesRollupStats24h) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollupStats24h) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetLogoOk

func (o *ResponsesRollupStats24h) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupStats24h) GetName

func (o *ResponsesRollupStats24h) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetNameOk

func (o *ResponsesRollupStats24h) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupStats24h) GetSize

func (o *ResponsesRollupStats24h) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesRollupStats24h) GetSizeOk

func (o *ResponsesRollupStats24h) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupStats24h) HasBlobsCount

func (o *ResponsesRollupStats24h) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesRollupStats24h) HasFee

func (o *ResponsesRollupStats24h) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesRollupStats24h) HasId

func (o *ResponsesRollupStats24h) HasId() bool

HasId returns a boolean if a field has been set.

func (o *ResponsesRollupStats24h) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesRollupStats24h) HasName

func (o *ResponsesRollupStats24h) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesRollupStats24h) HasSize

func (o *ResponsesRollupStats24h) HasSize() bool

HasSize returns a boolean if a field has been set.

func (ResponsesRollupStats24h) MarshalJSON

func (o ResponsesRollupStats24h) MarshalJSON() ([]byte, error)

func (*ResponsesRollupStats24h) SetBlobsCount

func (o *ResponsesRollupStats24h) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesRollupStats24h) SetFee

func (o *ResponsesRollupStats24h) SetFee(v int32)

SetFee gets a reference to the given int32 and assigns it to the Fee field.

func (*ResponsesRollupStats24h) SetId

func (o *ResponsesRollupStats24h) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *ResponsesRollupStats24h) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesRollupStats24h) SetName

func (o *ResponsesRollupStats24h) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesRollupStats24h) SetSize

func (o *ResponsesRollupStats24h) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (ResponsesRollupStats24h) ToMap

func (o ResponsesRollupStats24h) ToMap() (map[string]interface{}, error)

type ResponsesRollupWithDayStats

type ResponsesRollupWithDayStats struct {
	AvgSize        *int32   `json:"avg_size,omitempty"`
	BlobsCount     *int32   `json:"blobs_count,omitempty"`
	BlobsPerPfb    *float32 `json:"blobs_per_pfb,omitempty"`
	Bridge         *string  `json:"bridge,omitempty"`
	Category       *string  `json:"category,omitempty"`
	Compression    *string  `json:"compression,omitempty"`
	DefiLama       *string  `json:"defi_lama,omitempty"`
	Description    *string  `json:"description,omitempty"`
	Explorer       *string  `json:"explorer,omitempty"`
	FeePerPfb      *string  `json:"fee_per_pfb,omitempty"`
	Github         *string  `json:"github,omitempty"`
	Id             *int32   `json:"id,omitempty"`
	L2Beat         *string  `json:"l2_beat,omitempty"`
	MbPrice        *string  `json:"mb_price,omitempty"`
	Name           *string  `json:"name,omitempty"`
	NamespaceCount *int32   `json:"namespace_count,omitempty"`
	PfbCount       *int32   `json:"pfb_count,omitempty"`
	Provider       *string  `json:"provider,omitempty"`
	Slug           *string  `json:"slug,omitempty"`
	Stack          *string  `json:"stack,omitempty"`
	Throughput     *int32   `json:"throughput,omitempty"`
	TotalFee       *string  `json:"total_fee,omitempty"`
	TotalSize      *int32   `json:"total_size,omitempty"`
	Twitter        *string  `json:"twitter,omitempty"`
	Type           *string  `json:"type,omitempty"`
	Vm             *string  `json:"vm,omitempty"`
	Website        *string  `json:"website,omitempty"`
}

ResponsesRollupWithDayStats struct for ResponsesRollupWithDayStats

func NewResponsesRollupWithDayStats

func NewResponsesRollupWithDayStats() *ResponsesRollupWithDayStats

NewResponsesRollupWithDayStats instantiates a new ResponsesRollupWithDayStats 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

func NewResponsesRollupWithDayStatsWithDefaults

func NewResponsesRollupWithDayStatsWithDefaults() *ResponsesRollupWithDayStats

NewResponsesRollupWithDayStatsWithDefaults instantiates a new ResponsesRollupWithDayStats 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

func (*ResponsesRollupWithDayStats) GetAvgSize

func (o *ResponsesRollupWithDayStats) GetAvgSize() int32

GetAvgSize returns the AvgSize field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetAvgSizeOk

func (o *ResponsesRollupWithDayStats) GetAvgSizeOk() (*int32, bool)

GetAvgSizeOk returns a tuple with the AvgSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetBlobsCount

func (o *ResponsesRollupWithDayStats) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetBlobsCountOk

func (o *ResponsesRollupWithDayStats) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetBlobsPerPfb

func (o *ResponsesRollupWithDayStats) GetBlobsPerPfb() float32

GetBlobsPerPfb returns the BlobsPerPfb field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetBlobsPerPfbOk

func (o *ResponsesRollupWithDayStats) GetBlobsPerPfbOk() (*float32, bool)

GetBlobsPerPfbOk returns a tuple with the BlobsPerPfb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetBridge

func (o *ResponsesRollupWithDayStats) GetBridge() string

GetBridge returns the Bridge field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetBridgeOk

func (o *ResponsesRollupWithDayStats) GetBridgeOk() (*string, bool)

GetBridgeOk returns a tuple with the Bridge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetCategory added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetCategoryOk added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetCompression added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetCompressionOk added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetCompressionOk() (*string, bool)

GetCompressionOk returns a tuple with the Compression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetDefiLama added in v1.10.17

func (o *ResponsesRollupWithDayStats) GetDefiLama() string

GetDefiLama returns the DefiLama field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetDefiLamaOk added in v1.10.17

func (o *ResponsesRollupWithDayStats) GetDefiLamaOk() (*string, bool)

GetDefiLamaOk returns a tuple with the DefiLama field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetDescription

func (o *ResponsesRollupWithDayStats) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetDescriptionOk

func (o *ResponsesRollupWithDayStats) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetExplorer

func (o *ResponsesRollupWithDayStats) GetExplorer() string

GetExplorer returns the Explorer field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetExplorerOk

func (o *ResponsesRollupWithDayStats) GetExplorerOk() (*string, bool)

GetExplorerOk returns a tuple with the Explorer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetFeePerPfb

func (o *ResponsesRollupWithDayStats) GetFeePerPfb() string

GetFeePerPfb returns the FeePerPfb field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetFeePerPfbOk

func (o *ResponsesRollupWithDayStats) GetFeePerPfbOk() (*string, bool)

GetFeePerPfbOk returns a tuple with the FeePerPfb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetGithub

func (o *ResponsesRollupWithDayStats) GetGithub() string

GetGithub returns the Github field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetGithubOk

func (o *ResponsesRollupWithDayStats) GetGithubOk() (*string, bool)

GetGithubOk returns a tuple with the Github field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetIdOk

func (o *ResponsesRollupWithDayStats) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetL2Beat

func (o *ResponsesRollupWithDayStats) GetL2Beat() string

GetL2Beat returns the L2Beat field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetL2BeatOk

func (o *ResponsesRollupWithDayStats) GetL2BeatOk() (*string, bool)

GetL2BeatOk returns a tuple with the L2Beat field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollupWithDayStats) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetLogoOk

func (o *ResponsesRollupWithDayStats) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetMbPrice

func (o *ResponsesRollupWithDayStats) GetMbPrice() string

GetMbPrice returns the MbPrice field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetMbPriceOk

func (o *ResponsesRollupWithDayStats) GetMbPriceOk() (*string, bool)

GetMbPriceOk returns a tuple with the MbPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetName

func (o *ResponsesRollupWithDayStats) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetNameOk

func (o *ResponsesRollupWithDayStats) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetNamespaceCount

func (o *ResponsesRollupWithDayStats) GetNamespaceCount() int32

GetNamespaceCount returns the NamespaceCount field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetNamespaceCountOk

func (o *ResponsesRollupWithDayStats) GetNamespaceCountOk() (*int32, bool)

GetNamespaceCountOk returns a tuple with the NamespaceCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetPfbCount

func (o *ResponsesRollupWithDayStats) GetPfbCount() int32

GetPfbCount returns the PfbCount field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetPfbCountOk

func (o *ResponsesRollupWithDayStats) GetPfbCountOk() (*int32, bool)

GetPfbCountOk returns a tuple with the PfbCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetProvider added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetProviderOk added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetSlug

func (o *ResponsesRollupWithDayStats) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetSlugOk

func (o *ResponsesRollupWithDayStats) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetStack

func (o *ResponsesRollupWithDayStats) GetStack() string

GetStack returns the Stack field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetStackOk

func (o *ResponsesRollupWithDayStats) GetStackOk() (*string, bool)

GetStackOk returns a tuple with the Stack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetThroughput

func (o *ResponsesRollupWithDayStats) GetThroughput() int32

GetThroughput returns the Throughput field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetThroughputOk

func (o *ResponsesRollupWithDayStats) GetThroughputOk() (*int32, bool)

GetThroughputOk returns a tuple with the Throughput field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetTotalFee

func (o *ResponsesRollupWithDayStats) GetTotalFee() string

GetTotalFee returns the TotalFee field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetTotalFeeOk

func (o *ResponsesRollupWithDayStats) GetTotalFeeOk() (*string, bool)

GetTotalFeeOk returns a tuple with the TotalFee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetTotalSize

func (o *ResponsesRollupWithDayStats) GetTotalSize() int32

GetTotalSize returns the TotalSize field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetTotalSizeOk

func (o *ResponsesRollupWithDayStats) GetTotalSizeOk() (*int32, bool)

GetTotalSizeOk returns a tuple with the TotalSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetTwitter

func (o *ResponsesRollupWithDayStats) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetTwitterOk

func (o *ResponsesRollupWithDayStats) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetType added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetTypeOk added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetVm added in v1.10.4

GetVm returns the Vm field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetVmOk added in v1.10.4

func (o *ResponsesRollupWithDayStats) GetVmOk() (*string, bool)

GetVmOk returns a tuple with the Vm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) GetWebsite

func (o *ResponsesRollupWithDayStats) GetWebsite() string

GetWebsite returns the Website field value if set, zero value otherwise.

func (*ResponsesRollupWithDayStats) GetWebsiteOk

func (o *ResponsesRollupWithDayStats) GetWebsiteOk() (*string, bool)

GetWebsiteOk returns a tuple with the Website field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithDayStats) HasAvgSize

func (o *ResponsesRollupWithDayStats) HasAvgSize() bool

HasAvgSize returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasBlobsCount

func (o *ResponsesRollupWithDayStats) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasBlobsPerPfb

func (o *ResponsesRollupWithDayStats) HasBlobsPerPfb() bool

HasBlobsPerPfb returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasBridge

func (o *ResponsesRollupWithDayStats) HasBridge() bool

HasBridge returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasCategory added in v1.10.4

func (o *ResponsesRollupWithDayStats) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasCompression added in v1.10.4

func (o *ResponsesRollupWithDayStats) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasDefiLama added in v1.10.17

func (o *ResponsesRollupWithDayStats) HasDefiLama() bool

HasDefiLama returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasDescription

func (o *ResponsesRollupWithDayStats) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasExplorer

func (o *ResponsesRollupWithDayStats) HasExplorer() bool

HasExplorer returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasFeePerPfb

func (o *ResponsesRollupWithDayStats) HasFeePerPfb() bool

HasFeePerPfb returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasGithub

func (o *ResponsesRollupWithDayStats) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasId

func (o *ResponsesRollupWithDayStats) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasL2Beat

func (o *ResponsesRollupWithDayStats) HasL2Beat() bool

HasL2Beat returns a boolean if a field has been set.

func (o *ResponsesRollupWithDayStats) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasMbPrice

func (o *ResponsesRollupWithDayStats) HasMbPrice() bool

HasMbPrice returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasName

func (o *ResponsesRollupWithDayStats) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasNamespaceCount

func (o *ResponsesRollupWithDayStats) HasNamespaceCount() bool

HasNamespaceCount returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasPfbCount

func (o *ResponsesRollupWithDayStats) HasPfbCount() bool

HasPfbCount returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasProvider added in v1.10.4

func (o *ResponsesRollupWithDayStats) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasSlug

func (o *ResponsesRollupWithDayStats) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasStack

func (o *ResponsesRollupWithDayStats) HasStack() bool

HasStack returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasThroughput

func (o *ResponsesRollupWithDayStats) HasThroughput() bool

HasThroughput returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasTotalFee

func (o *ResponsesRollupWithDayStats) HasTotalFee() bool

HasTotalFee returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasTotalSize

func (o *ResponsesRollupWithDayStats) HasTotalSize() bool

HasTotalSize returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasTwitter

func (o *ResponsesRollupWithDayStats) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasType added in v1.10.4

func (o *ResponsesRollupWithDayStats) HasType() bool

HasType returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasVm added in v1.10.4

func (o *ResponsesRollupWithDayStats) HasVm() bool

HasVm returns a boolean if a field has been set.

func (*ResponsesRollupWithDayStats) HasWebsite

func (o *ResponsesRollupWithDayStats) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (ResponsesRollupWithDayStats) MarshalJSON

func (o ResponsesRollupWithDayStats) MarshalJSON() ([]byte, error)

func (*ResponsesRollupWithDayStats) SetAvgSize

func (o *ResponsesRollupWithDayStats) SetAvgSize(v int32)

SetAvgSize gets a reference to the given int32 and assigns it to the AvgSize field.

func (*ResponsesRollupWithDayStats) SetBlobsCount

func (o *ResponsesRollupWithDayStats) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesRollupWithDayStats) SetBlobsPerPfb

func (o *ResponsesRollupWithDayStats) SetBlobsPerPfb(v float32)

SetBlobsPerPfb gets a reference to the given float32 and assigns it to the BlobsPerPfb field.

func (*ResponsesRollupWithDayStats) SetBridge

func (o *ResponsesRollupWithDayStats) SetBridge(v string)

SetBridge gets a reference to the given string and assigns it to the Bridge field.

func (*ResponsesRollupWithDayStats) SetCategory added in v1.10.4

func (o *ResponsesRollupWithDayStats) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ResponsesRollupWithDayStats) SetCompression added in v1.10.4

func (o *ResponsesRollupWithDayStats) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*ResponsesRollupWithDayStats) SetDefiLama added in v1.10.17

func (o *ResponsesRollupWithDayStats) SetDefiLama(v string)

SetDefiLama gets a reference to the given string and assigns it to the DefiLama field.

func (*ResponsesRollupWithDayStats) SetDescription

func (o *ResponsesRollupWithDayStats) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ResponsesRollupWithDayStats) SetExplorer

func (o *ResponsesRollupWithDayStats) SetExplorer(v string)

SetExplorer gets a reference to the given string and assigns it to the Explorer field.

func (*ResponsesRollupWithDayStats) SetFeePerPfb

func (o *ResponsesRollupWithDayStats) SetFeePerPfb(v string)

SetFeePerPfb gets a reference to the given string and assigns it to the FeePerPfb field.

func (*ResponsesRollupWithDayStats) SetGithub

func (o *ResponsesRollupWithDayStats) SetGithub(v string)

SetGithub gets a reference to the given string and assigns it to the Github field.

func (*ResponsesRollupWithDayStats) SetId

func (o *ResponsesRollupWithDayStats) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesRollupWithDayStats) SetL2Beat

func (o *ResponsesRollupWithDayStats) SetL2Beat(v string)

SetL2Beat gets a reference to the given string and assigns it to the L2Beat field.

func (o *ResponsesRollupWithDayStats) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesRollupWithDayStats) SetMbPrice

func (o *ResponsesRollupWithDayStats) SetMbPrice(v string)

SetMbPrice gets a reference to the given string and assigns it to the MbPrice field.

func (*ResponsesRollupWithDayStats) SetName

func (o *ResponsesRollupWithDayStats) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesRollupWithDayStats) SetNamespaceCount

func (o *ResponsesRollupWithDayStats) SetNamespaceCount(v int32)

SetNamespaceCount gets a reference to the given int32 and assigns it to the NamespaceCount field.

func (*ResponsesRollupWithDayStats) SetPfbCount

func (o *ResponsesRollupWithDayStats) SetPfbCount(v int32)

SetPfbCount gets a reference to the given int32 and assigns it to the PfbCount field.

func (*ResponsesRollupWithDayStats) SetProvider added in v1.10.4

func (o *ResponsesRollupWithDayStats) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*ResponsesRollupWithDayStats) SetSlug

func (o *ResponsesRollupWithDayStats) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*ResponsesRollupWithDayStats) SetStack

func (o *ResponsesRollupWithDayStats) SetStack(v string)

SetStack gets a reference to the given string and assigns it to the Stack field.

func (*ResponsesRollupWithDayStats) SetThroughput

func (o *ResponsesRollupWithDayStats) SetThroughput(v int32)

SetThroughput gets a reference to the given int32 and assigns it to the Throughput field.

func (*ResponsesRollupWithDayStats) SetTotalFee

func (o *ResponsesRollupWithDayStats) SetTotalFee(v string)

SetTotalFee gets a reference to the given string and assigns it to the TotalFee field.

func (*ResponsesRollupWithDayStats) SetTotalSize

func (o *ResponsesRollupWithDayStats) SetTotalSize(v int32)

SetTotalSize gets a reference to the given int32 and assigns it to the TotalSize field.

func (*ResponsesRollupWithDayStats) SetTwitter

func (o *ResponsesRollupWithDayStats) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (*ResponsesRollupWithDayStats) SetType added in v1.10.4

func (o *ResponsesRollupWithDayStats) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ResponsesRollupWithDayStats) SetVm added in v1.10.4

func (o *ResponsesRollupWithDayStats) SetVm(v string)

SetVm gets a reference to the given string and assigns it to the Vm field.

func (*ResponsesRollupWithDayStats) SetWebsite

func (o *ResponsesRollupWithDayStats) SetWebsite(v string)

SetWebsite gets a reference to the given string and assigns it to the Website field.

func (ResponsesRollupWithDayStats) ToMap

func (o ResponsesRollupWithDayStats) ToMap() (map[string]interface{}, error)

type ResponsesRollupWithStats

type ResponsesRollupWithStats struct {
	BlobsCount       *int32     `json:"blobs_count,omitempty"`
	BlobsCountPct    *float32   `json:"blobs_count_pct,omitempty"`
	Bridge           *string    `json:"bridge,omitempty"`
	Category         *string    `json:"category,omitempty"`
	Compression      *string    `json:"compression,omitempty"`
	DefiLama         *string    `json:"defi_lama,omitempty"`
	Description      *string    `json:"description,omitempty"`
	Explorer         *string    `json:"explorer,omitempty"`
	Fee              *string    `json:"fee,omitempty"`
	FeePct           *float32   `json:"fee_pct,omitempty"`
	FirstMessageTime *time.Time `json:"first_message_time,omitempty"`
	Github           *string    `json:"github,omitempty"`
	Id               *int32     `json:"id,omitempty"`
	L2Beat           *string    `json:"l2_beat,omitempty"`
	LastMessageTime  *time.Time `json:"last_message_time,omitempty"`
	Links            []string   `json:"links,omitempty"`
	Name             *string    `json:"name,omitempty"`
	Provider         *string    `json:"provider,omitempty"`
	Size             *int32     `json:"size,omitempty"`
	SizePct          *float32   `json:"size_pct,omitempty"`
	Slug             *string    `json:"slug,omitempty"`
	Stack            *string    `json:"stack,omitempty"`
	Twitter          *string    `json:"twitter,omitempty"`
	Type             *string    `json:"type,omitempty"`
	Vm               *string    `json:"vm,omitempty"`
	Website          *string    `json:"website,omitempty"`
}

ResponsesRollupWithStats struct for ResponsesRollupWithStats

func NewResponsesRollupWithStats

func NewResponsesRollupWithStats() *ResponsesRollupWithStats

NewResponsesRollupWithStats instantiates a new ResponsesRollupWithStats 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

func NewResponsesRollupWithStatsWithDefaults

func NewResponsesRollupWithStatsWithDefaults() *ResponsesRollupWithStats

NewResponsesRollupWithStatsWithDefaults instantiates a new ResponsesRollupWithStats 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

func (*ResponsesRollupWithStats) GetBlobsCount

func (o *ResponsesRollupWithStats) GetBlobsCount() int32

GetBlobsCount returns the BlobsCount field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetBlobsCountOk

func (o *ResponsesRollupWithStats) GetBlobsCountOk() (*int32, bool)

GetBlobsCountOk returns a tuple with the BlobsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetBlobsCountPct

func (o *ResponsesRollupWithStats) GetBlobsCountPct() float32

GetBlobsCountPct returns the BlobsCountPct field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetBlobsCountPctOk

func (o *ResponsesRollupWithStats) GetBlobsCountPctOk() (*float32, bool)

GetBlobsCountPctOk returns a tuple with the BlobsCountPct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetBridge

func (o *ResponsesRollupWithStats) GetBridge() string

GetBridge returns the Bridge field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetBridgeOk

func (o *ResponsesRollupWithStats) GetBridgeOk() (*string, bool)

GetBridgeOk returns a tuple with the Bridge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetCategory added in v1.10.4

func (o *ResponsesRollupWithStats) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetCategoryOk added in v1.10.4

func (o *ResponsesRollupWithStats) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetCompression added in v1.10.4

func (o *ResponsesRollupWithStats) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetCompressionOk added in v1.10.4

func (o *ResponsesRollupWithStats) GetCompressionOk() (*string, bool)

GetCompressionOk returns a tuple with the Compression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetDefiLama added in v1.10.17

func (o *ResponsesRollupWithStats) GetDefiLama() string

GetDefiLama returns the DefiLama field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetDefiLamaOk added in v1.10.17

func (o *ResponsesRollupWithStats) GetDefiLamaOk() (*string, bool)

GetDefiLamaOk returns a tuple with the DefiLama field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetDescription

func (o *ResponsesRollupWithStats) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetDescriptionOk

func (o *ResponsesRollupWithStats) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetExplorer

func (o *ResponsesRollupWithStats) GetExplorer() string

GetExplorer returns the Explorer field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetExplorerOk

func (o *ResponsesRollupWithStats) GetExplorerOk() (*string, bool)

GetExplorerOk returns a tuple with the Explorer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetFee

func (o *ResponsesRollupWithStats) GetFee() string

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetFeeOk

func (o *ResponsesRollupWithStats) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetFeePct

func (o *ResponsesRollupWithStats) GetFeePct() float32

GetFeePct returns the FeePct field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetFeePctOk

func (o *ResponsesRollupWithStats) GetFeePctOk() (*float32, bool)

GetFeePctOk returns a tuple with the FeePct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetFirstMessageTime

func (o *ResponsesRollupWithStats) GetFirstMessageTime() time.Time

GetFirstMessageTime returns the FirstMessageTime field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetFirstMessageTimeOk

func (o *ResponsesRollupWithStats) GetFirstMessageTimeOk() (*time.Time, bool)

GetFirstMessageTimeOk returns a tuple with the FirstMessageTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetGithub

func (o *ResponsesRollupWithStats) GetGithub() string

GetGithub returns the Github field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetGithubOk

func (o *ResponsesRollupWithStats) GetGithubOk() (*string, bool)

GetGithubOk returns a tuple with the Github field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetId

func (o *ResponsesRollupWithStats) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetIdOk

func (o *ResponsesRollupWithStats) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetL2Beat

func (o *ResponsesRollupWithStats) GetL2Beat() string

GetL2Beat returns the L2Beat field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetL2BeatOk

func (o *ResponsesRollupWithStats) GetL2BeatOk() (*string, bool)

GetL2BeatOk returns a tuple with the L2Beat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetLastMessageTime

func (o *ResponsesRollupWithStats) GetLastMessageTime() time.Time

GetLastMessageTime returns the LastMessageTime field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetLastMessageTimeOk

func (o *ResponsesRollupWithStats) GetLastMessageTimeOk() (*time.Time, bool)

GetLastMessageTimeOk returns a tuple with the LastMessageTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollupWithStats) GetLinks() []string

GetLinks returns the Links field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetLinksOk

func (o *ResponsesRollupWithStats) GetLinksOk() ([]string, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesRollupWithStats) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetLogoOk

func (o *ResponsesRollupWithStats) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetName

func (o *ResponsesRollupWithStats) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetNameOk

func (o *ResponsesRollupWithStats) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetProvider added in v1.10.4

func (o *ResponsesRollupWithStats) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetProviderOk added in v1.10.4

func (o *ResponsesRollupWithStats) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetSize

func (o *ResponsesRollupWithStats) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetSizeOk

func (o *ResponsesRollupWithStats) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetSizePct

func (o *ResponsesRollupWithStats) GetSizePct() float32

GetSizePct returns the SizePct field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetSizePctOk

func (o *ResponsesRollupWithStats) GetSizePctOk() (*float32, bool)

GetSizePctOk returns a tuple with the SizePct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetSlug

func (o *ResponsesRollupWithStats) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetSlugOk

func (o *ResponsesRollupWithStats) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetStack

func (o *ResponsesRollupWithStats) GetStack() string

GetStack returns the Stack field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetStackOk

func (o *ResponsesRollupWithStats) GetStackOk() (*string, bool)

GetStackOk returns a tuple with the Stack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetTwitter

func (o *ResponsesRollupWithStats) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetTwitterOk

func (o *ResponsesRollupWithStats) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetType added in v1.10.4

func (o *ResponsesRollupWithStats) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetTypeOk added in v1.10.4

func (o *ResponsesRollupWithStats) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetVm added in v1.10.4

func (o *ResponsesRollupWithStats) GetVm() string

GetVm returns the Vm field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetVmOk added in v1.10.4

func (o *ResponsesRollupWithStats) GetVmOk() (*string, bool)

GetVmOk returns a tuple with the Vm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) GetWebsite

func (o *ResponsesRollupWithStats) GetWebsite() string

GetWebsite returns the Website field value if set, zero value otherwise.

func (*ResponsesRollupWithStats) GetWebsiteOk

func (o *ResponsesRollupWithStats) GetWebsiteOk() (*string, bool)

GetWebsiteOk returns a tuple with the Website field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesRollupWithStats) HasBlobsCount

func (o *ResponsesRollupWithStats) HasBlobsCount() bool

HasBlobsCount returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasBlobsCountPct

func (o *ResponsesRollupWithStats) HasBlobsCountPct() bool

HasBlobsCountPct returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasBridge

func (o *ResponsesRollupWithStats) HasBridge() bool

HasBridge returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasCategory added in v1.10.4

func (o *ResponsesRollupWithStats) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasCompression added in v1.10.4

func (o *ResponsesRollupWithStats) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasDefiLama added in v1.10.17

func (o *ResponsesRollupWithStats) HasDefiLama() bool

HasDefiLama returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasDescription

func (o *ResponsesRollupWithStats) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasExplorer

func (o *ResponsesRollupWithStats) HasExplorer() bool

HasExplorer returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasFee

func (o *ResponsesRollupWithStats) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasFeePct

func (o *ResponsesRollupWithStats) HasFeePct() bool

HasFeePct returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasFirstMessageTime

func (o *ResponsesRollupWithStats) HasFirstMessageTime() bool

HasFirstMessageTime returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasGithub

func (o *ResponsesRollupWithStats) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasId

func (o *ResponsesRollupWithStats) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasL2Beat

func (o *ResponsesRollupWithStats) HasL2Beat() bool

HasL2Beat returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasLastMessageTime

func (o *ResponsesRollupWithStats) HasLastMessageTime() bool

HasLastMessageTime returns a boolean if a field has been set.

func (o *ResponsesRollupWithStats) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (o *ResponsesRollupWithStats) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasName

func (o *ResponsesRollupWithStats) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasProvider added in v1.10.4

func (o *ResponsesRollupWithStats) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasSize

func (o *ResponsesRollupWithStats) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasSizePct

func (o *ResponsesRollupWithStats) HasSizePct() bool

HasSizePct returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasSlug

func (o *ResponsesRollupWithStats) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasStack

func (o *ResponsesRollupWithStats) HasStack() bool

HasStack returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasTwitter

func (o *ResponsesRollupWithStats) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasType added in v1.10.4

func (o *ResponsesRollupWithStats) HasType() bool

HasType returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasVm added in v1.10.4

func (o *ResponsesRollupWithStats) HasVm() bool

HasVm returns a boolean if a field has been set.

func (*ResponsesRollupWithStats) HasWebsite

func (o *ResponsesRollupWithStats) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (ResponsesRollupWithStats) MarshalJSON

func (o ResponsesRollupWithStats) MarshalJSON() ([]byte, error)

func (*ResponsesRollupWithStats) SetBlobsCount

func (o *ResponsesRollupWithStats) SetBlobsCount(v int32)

SetBlobsCount gets a reference to the given int32 and assigns it to the BlobsCount field.

func (*ResponsesRollupWithStats) SetBlobsCountPct

func (o *ResponsesRollupWithStats) SetBlobsCountPct(v float32)

SetBlobsCountPct gets a reference to the given float32 and assigns it to the BlobsCountPct field.

func (*ResponsesRollupWithStats) SetBridge

func (o *ResponsesRollupWithStats) SetBridge(v string)

SetBridge gets a reference to the given string and assigns it to the Bridge field.

func (*ResponsesRollupWithStats) SetCategory added in v1.10.4

func (o *ResponsesRollupWithStats) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ResponsesRollupWithStats) SetCompression added in v1.10.4

func (o *ResponsesRollupWithStats) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*ResponsesRollupWithStats) SetDefiLama added in v1.10.17

func (o *ResponsesRollupWithStats) SetDefiLama(v string)

SetDefiLama gets a reference to the given string and assigns it to the DefiLama field.

func (*ResponsesRollupWithStats) SetDescription

func (o *ResponsesRollupWithStats) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ResponsesRollupWithStats) SetExplorer

func (o *ResponsesRollupWithStats) SetExplorer(v string)

SetExplorer gets a reference to the given string and assigns it to the Explorer field.

func (*ResponsesRollupWithStats) SetFee

func (o *ResponsesRollupWithStats) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (*ResponsesRollupWithStats) SetFeePct

func (o *ResponsesRollupWithStats) SetFeePct(v float32)

SetFeePct gets a reference to the given float32 and assigns it to the FeePct field.

func (*ResponsesRollupWithStats) SetFirstMessageTime

func (o *ResponsesRollupWithStats) SetFirstMessageTime(v time.Time)

SetFirstMessageTime gets a reference to the given time.Time and assigns it to the FirstMessageTime field.

func (*ResponsesRollupWithStats) SetGithub

func (o *ResponsesRollupWithStats) SetGithub(v string)

SetGithub gets a reference to the given string and assigns it to the Github field.

func (*ResponsesRollupWithStats) SetId

func (o *ResponsesRollupWithStats) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesRollupWithStats) SetL2Beat

func (o *ResponsesRollupWithStats) SetL2Beat(v string)

SetL2Beat gets a reference to the given string and assigns it to the L2Beat field.

func (*ResponsesRollupWithStats) SetLastMessageTime

func (o *ResponsesRollupWithStats) SetLastMessageTime(v time.Time)

SetLastMessageTime gets a reference to the given time.Time and assigns it to the LastMessageTime field.

func (o *ResponsesRollupWithStats) SetLinks(v []string)

SetLinks gets a reference to the given []string and assigns it to the Links field.

func (o *ResponsesRollupWithStats) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesRollupWithStats) SetName

func (o *ResponsesRollupWithStats) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesRollupWithStats) SetProvider added in v1.10.4

func (o *ResponsesRollupWithStats) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*ResponsesRollupWithStats) SetSize

func (o *ResponsesRollupWithStats) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*ResponsesRollupWithStats) SetSizePct

func (o *ResponsesRollupWithStats) SetSizePct(v float32)

SetSizePct gets a reference to the given float32 and assigns it to the SizePct field.

func (*ResponsesRollupWithStats) SetSlug

func (o *ResponsesRollupWithStats) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*ResponsesRollupWithStats) SetStack

func (o *ResponsesRollupWithStats) SetStack(v string)

SetStack gets a reference to the given string and assigns it to the Stack field.

func (*ResponsesRollupWithStats) SetTwitter

func (o *ResponsesRollupWithStats) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (*ResponsesRollupWithStats) SetType added in v1.10.4

func (o *ResponsesRollupWithStats) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ResponsesRollupWithStats) SetVm added in v1.10.4

func (o *ResponsesRollupWithStats) SetVm(v string)

SetVm gets a reference to the given string and assigns it to the Vm field.

func (*ResponsesRollupWithStats) SetWebsite

func (o *ResponsesRollupWithStats) SetWebsite(v string)

SetWebsite gets a reference to the given string and assigns it to the Website field.

func (ResponsesRollupWithStats) ToMap

func (o ResponsesRollupWithStats) ToMap() (map[string]interface{}, error)

type ResponsesSearchItem

type ResponsesSearchItem struct {
	// Search result. Can be one of folowwing types: Block, Address, Namespace, Tx, Validator, Rollup
	Result map[string]interface{} `json:"result,omitempty"`
	// Result type which is in the result. Can be 'block', 'address', 'namespace', 'tx', 'validator', 'rollup'
	Type *string `json:"type,omitempty"`
}

ResponsesSearchItem struct for ResponsesSearchItem

func NewResponsesSearchItem

func NewResponsesSearchItem() *ResponsesSearchItem

NewResponsesSearchItem instantiates a new ResponsesSearchItem 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

func NewResponsesSearchItemWithDefaults

func NewResponsesSearchItemWithDefaults() *ResponsesSearchItem

NewResponsesSearchItemWithDefaults instantiates a new ResponsesSearchItem 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

func (*ResponsesSearchItem) GetResult

func (o *ResponsesSearchItem) GetResult() map[string]interface{}

GetResult returns the Result field value if set, zero value otherwise.

func (*ResponsesSearchItem) GetResultOk

func (o *ResponsesSearchItem) GetResultOk() (map[string]interface{}, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSearchItem) GetType

func (o *ResponsesSearchItem) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesSearchItem) GetTypeOk

func (o *ResponsesSearchItem) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSearchItem) HasResult

func (o *ResponsesSearchItem) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*ResponsesSearchItem) HasType

func (o *ResponsesSearchItem) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesSearchItem) MarshalJSON

func (o ResponsesSearchItem) MarshalJSON() ([]byte, error)

func (*ResponsesSearchItem) SetResult

func (o *ResponsesSearchItem) SetResult(v map[string]interface{})

SetResult gets a reference to the given map[string]interface{} and assigns it to the Result field.

func (*ResponsesSearchItem) SetType

func (o *ResponsesSearchItem) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ResponsesSearchItem) ToMap

func (o ResponsesSearchItem) ToMap() (map[string]interface{}, error)

type ResponsesSeriesItem

type ResponsesSeriesItem struct {
	Max   *string    `json:"max,omitempty"`
	Min   *string    `json:"min,omitempty"`
	Time  *time.Time `json:"time,omitempty"`
	Value *string    `json:"value,omitempty"`
}

ResponsesSeriesItem struct for ResponsesSeriesItem

func NewResponsesSeriesItem

func NewResponsesSeriesItem() *ResponsesSeriesItem

NewResponsesSeriesItem instantiates a new ResponsesSeriesItem 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

func NewResponsesSeriesItemWithDefaults

func NewResponsesSeriesItemWithDefaults() *ResponsesSeriesItem

NewResponsesSeriesItemWithDefaults instantiates a new ResponsesSeriesItem 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

func (*ResponsesSeriesItem) GetMax

func (o *ResponsesSeriesItem) GetMax() string

GetMax returns the Max field value if set, zero value otherwise.

func (*ResponsesSeriesItem) GetMaxOk

func (o *ResponsesSeriesItem) GetMaxOk() (*string, bool)

GetMaxOk returns a tuple with the Max field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSeriesItem) GetMin

func (o *ResponsesSeriesItem) GetMin() string

GetMin returns the Min field value if set, zero value otherwise.

func (*ResponsesSeriesItem) GetMinOk

func (o *ResponsesSeriesItem) GetMinOk() (*string, bool)

GetMinOk returns a tuple with the Min field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSeriesItem) GetTime

func (o *ResponsesSeriesItem) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesSeriesItem) GetTimeOk

func (o *ResponsesSeriesItem) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSeriesItem) GetValue

func (o *ResponsesSeriesItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ResponsesSeriesItem) GetValueOk

func (o *ResponsesSeriesItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSeriesItem) HasMax

func (o *ResponsesSeriesItem) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*ResponsesSeriesItem) HasMin

func (o *ResponsesSeriesItem) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*ResponsesSeriesItem) HasTime

func (o *ResponsesSeriesItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesSeriesItem) HasValue

func (o *ResponsesSeriesItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ResponsesSeriesItem) MarshalJSON

func (o ResponsesSeriesItem) MarshalJSON() ([]byte, error)

func (*ResponsesSeriesItem) SetMax

func (o *ResponsesSeriesItem) SetMax(v string)

SetMax gets a reference to the given string and assigns it to the Max field.

func (*ResponsesSeriesItem) SetMin

func (o *ResponsesSeriesItem) SetMin(v string)

SetMin gets a reference to the given string and assigns it to the Min field.

func (*ResponsesSeriesItem) SetTime

func (o *ResponsesSeriesItem) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesSeriesItem) SetValue

func (o *ResponsesSeriesItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ResponsesSeriesItem) ToMap

func (o ResponsesSeriesItem) ToMap() (map[string]interface{}, error)

type ResponsesShortRollup

type ResponsesShortRollup struct {
	Id   *int32  `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
	Slug *string `json:"slug,omitempty"`
}

ResponsesShortRollup struct for ResponsesShortRollup

func NewResponsesShortRollup

func NewResponsesShortRollup() *ResponsesShortRollup

NewResponsesShortRollup instantiates a new ResponsesShortRollup 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

func NewResponsesShortRollupWithDefaults

func NewResponsesShortRollupWithDefaults() *ResponsesShortRollup

NewResponsesShortRollupWithDefaults instantiates a new ResponsesShortRollup 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

func (*ResponsesShortRollup) GetId

func (o *ResponsesShortRollup) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesShortRollup) GetIdOk

func (o *ResponsesShortRollup) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ResponsesShortRollup) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ResponsesShortRollup) GetLogoOk

func (o *ResponsesShortRollup) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortRollup) GetName

func (o *ResponsesShortRollup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesShortRollup) GetNameOk

func (o *ResponsesShortRollup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortRollup) GetSlug

func (o *ResponsesShortRollup) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ResponsesShortRollup) GetSlugOk

func (o *ResponsesShortRollup) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortRollup) HasId

func (o *ResponsesShortRollup) HasId() bool

HasId returns a boolean if a field has been set.

func (o *ResponsesShortRollup) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*ResponsesShortRollup) HasName

func (o *ResponsesShortRollup) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesShortRollup) HasSlug

func (o *ResponsesShortRollup) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (ResponsesShortRollup) MarshalJSON

func (o ResponsesShortRollup) MarshalJSON() ([]byte, error)

func (*ResponsesShortRollup) SetId

func (o *ResponsesShortRollup) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *ResponsesShortRollup) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ResponsesShortRollup) SetName

func (o *ResponsesShortRollup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesShortRollup) SetSlug

func (o *ResponsesShortRollup) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (ResponsesShortRollup) ToMap

func (o ResponsesShortRollup) ToMap() (map[string]interface{}, error)

type ResponsesShortValidator

type ResponsesShortValidator struct {
	ConsAddress *string `json:"cons_address,omitempty"`
	Id          *int32  `json:"id,omitempty"`
	Moniker     *string `json:"moniker,omitempty"`
}

ResponsesShortValidator struct for ResponsesShortValidator

func NewResponsesShortValidator

func NewResponsesShortValidator() *ResponsesShortValidator

NewResponsesShortValidator instantiates a new ResponsesShortValidator 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

func NewResponsesShortValidatorWithDefaults

func NewResponsesShortValidatorWithDefaults() *ResponsesShortValidator

NewResponsesShortValidatorWithDefaults instantiates a new ResponsesShortValidator 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

func (*ResponsesShortValidator) GetConsAddress

func (o *ResponsesShortValidator) GetConsAddress() string

GetConsAddress returns the ConsAddress field value if set, zero value otherwise.

func (*ResponsesShortValidator) GetConsAddressOk

func (o *ResponsesShortValidator) GetConsAddressOk() (*string, bool)

GetConsAddressOk returns a tuple with the ConsAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortValidator) GetId

func (o *ResponsesShortValidator) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesShortValidator) GetIdOk

func (o *ResponsesShortValidator) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortValidator) GetMoniker

func (o *ResponsesShortValidator) GetMoniker() string

GetMoniker returns the Moniker field value if set, zero value otherwise.

func (*ResponsesShortValidator) GetMonikerOk

func (o *ResponsesShortValidator) GetMonikerOk() (*string, bool)

GetMonikerOk returns a tuple with the Moniker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesShortValidator) HasConsAddress

func (o *ResponsesShortValidator) HasConsAddress() bool

HasConsAddress returns a boolean if a field has been set.

func (*ResponsesShortValidator) HasId

func (o *ResponsesShortValidator) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesShortValidator) HasMoniker

func (o *ResponsesShortValidator) HasMoniker() bool

HasMoniker returns a boolean if a field has been set.

func (ResponsesShortValidator) MarshalJSON

func (o ResponsesShortValidator) MarshalJSON() ([]byte, error)

func (*ResponsesShortValidator) SetConsAddress

func (o *ResponsesShortValidator) SetConsAddress(v string)

SetConsAddress gets a reference to the given string and assigns it to the ConsAddress field.

func (*ResponsesShortValidator) SetId

func (o *ResponsesShortValidator) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesShortValidator) SetMoniker

func (o *ResponsesShortValidator) SetMoniker(v string)

SetMoniker gets a reference to the given string and assigns it to the Moniker field.

func (ResponsesShortValidator) ToMap

func (o ResponsesShortValidator) ToMap() (map[string]interface{}, error)

type ResponsesSignedBlocks

type ResponsesSignedBlocks struct {
	Height *int32 `json:"height,omitempty"`
	Signed *bool  `json:"signed,omitempty"`
}

ResponsesSignedBlocks struct for ResponsesSignedBlocks

func NewResponsesSignedBlocks

func NewResponsesSignedBlocks() *ResponsesSignedBlocks

NewResponsesSignedBlocks instantiates a new ResponsesSignedBlocks 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

func NewResponsesSignedBlocksWithDefaults

func NewResponsesSignedBlocksWithDefaults() *ResponsesSignedBlocks

NewResponsesSignedBlocksWithDefaults instantiates a new ResponsesSignedBlocks 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

func (*ResponsesSignedBlocks) GetHeight

func (o *ResponsesSignedBlocks) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesSignedBlocks) GetHeightOk

func (o *ResponsesSignedBlocks) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSignedBlocks) GetSigned

func (o *ResponsesSignedBlocks) GetSigned() bool

GetSigned returns the Signed field value if set, zero value otherwise.

func (*ResponsesSignedBlocks) GetSignedOk

func (o *ResponsesSignedBlocks) GetSignedOk() (*bool, bool)

GetSignedOk returns a tuple with the Signed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesSignedBlocks) HasHeight

func (o *ResponsesSignedBlocks) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesSignedBlocks) HasSigned

func (o *ResponsesSignedBlocks) HasSigned() bool

HasSigned returns a boolean if a field has been set.

func (ResponsesSignedBlocks) MarshalJSON

func (o ResponsesSignedBlocks) MarshalJSON() ([]byte, error)

func (*ResponsesSignedBlocks) SetHeight

func (o *ResponsesSignedBlocks) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesSignedBlocks) SetSigned

func (o *ResponsesSignedBlocks) SetSigned(v bool)

SetSigned gets a reference to the given bool and assigns it to the Signed field.

func (ResponsesSignedBlocks) ToMap

func (o ResponsesSignedBlocks) ToMap() (map[string]interface{}, error)

type ResponsesState

type ResponsesState struct {
	ChainId          *string    `json:"chain_id,omitempty"`
	Hash             *string    `json:"hash,omitempty"`
	Id               *int64     `json:"id,omitempty"`
	LastHeight       *int64     `json:"last_height,omitempty"`
	LastTime         *time.Time `json:"last_time,omitempty"`
	Name             *string    `json:"name,omitempty"`
	Synced           *bool      `json:"synced,omitempty"`
	TotalAccounts    *int64     `json:"total_accounts,omitempty"`
	TotalBlobsSize   *int64     `json:"total_blobs_size,omitempty"`
	TotalFee         *string    `json:"total_fee,omitempty"`
	TotalStake       *string    `json:"total_stake,omitempty"`
	TotalSupply      *string    `json:"total_supply,omitempty"`
	TotalTx          *int64     `json:"total_tx,omitempty"`
	TotalValidators  *int64     `json:"total_validators,omitempty"`
	TotalVotingPower *string    `json:"total_voting_power,omitempty"`
}

ResponsesState struct for ResponsesState

func NewResponsesState

func NewResponsesState() *ResponsesState

NewResponsesState instantiates a new ResponsesState 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

func NewResponsesStateWithDefaults

func NewResponsesStateWithDefaults() *ResponsesState

NewResponsesStateWithDefaults instantiates a new ResponsesState 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

func (*ResponsesState) GetChainId

func (o *ResponsesState) GetChainId() string

GetChainId returns the ChainId field value if set, zero value otherwise.

func (*ResponsesState) GetChainIdOk

func (o *ResponsesState) GetChainIdOk() (*string, bool)

GetChainIdOk returns a tuple with the ChainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetHash

func (o *ResponsesState) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesState) GetHashOk

func (o *ResponsesState) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetId

func (o *ResponsesState) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesState) GetIdOk

func (o *ResponsesState) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetLastHeight

func (o *ResponsesState) GetLastHeight() int64

GetLastHeight returns the LastHeight field value if set, zero value otherwise.

func (*ResponsesState) GetLastHeightOk

func (o *ResponsesState) GetLastHeightOk() (*int64, bool)

GetLastHeightOk returns a tuple with the LastHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetLastTime

func (o *ResponsesState) GetLastTime() time.Time

GetLastTime returns the LastTime field value if set, zero value otherwise.

func (*ResponsesState) GetLastTimeOk

func (o *ResponsesState) GetLastTimeOk() (*time.Time, bool)

GetLastTimeOk returns a tuple with the LastTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetName

func (o *ResponsesState) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResponsesState) GetNameOk

func (o *ResponsesState) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetSynced

func (o *ResponsesState) GetSynced() bool

GetSynced returns the Synced field value if set, zero value otherwise.

func (*ResponsesState) GetSyncedOk

func (o *ResponsesState) GetSyncedOk() (*bool, bool)

GetSyncedOk returns a tuple with the Synced field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalAccounts

func (o *ResponsesState) GetTotalAccounts() int64

GetTotalAccounts returns the TotalAccounts field value if set, zero value otherwise.

func (*ResponsesState) GetTotalAccountsOk

func (o *ResponsesState) GetTotalAccountsOk() (*int64, bool)

GetTotalAccountsOk returns a tuple with the TotalAccounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalBlobsSize

func (o *ResponsesState) GetTotalBlobsSize() int64

GetTotalBlobsSize returns the TotalBlobsSize field value if set, zero value otherwise.

func (*ResponsesState) GetTotalBlobsSizeOk

func (o *ResponsesState) GetTotalBlobsSizeOk() (*int64, bool)

GetTotalBlobsSizeOk returns a tuple with the TotalBlobsSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalFee

func (o *ResponsesState) GetTotalFee() string

GetTotalFee returns the TotalFee field value if set, zero value otherwise.

func (*ResponsesState) GetTotalFeeOk

func (o *ResponsesState) GetTotalFeeOk() (*string, bool)

GetTotalFeeOk returns a tuple with the TotalFee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalStake

func (o *ResponsesState) GetTotalStake() string

GetTotalStake returns the TotalStake field value if set, zero value otherwise.

func (*ResponsesState) GetTotalStakeOk

func (o *ResponsesState) GetTotalStakeOk() (*string, bool)

GetTotalStakeOk returns a tuple with the TotalStake field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalSupply

func (o *ResponsesState) GetTotalSupply() string

GetTotalSupply returns the TotalSupply field value if set, zero value otherwise.

func (*ResponsesState) GetTotalSupplyOk

func (o *ResponsesState) GetTotalSupplyOk() (*string, bool)

GetTotalSupplyOk returns a tuple with the TotalSupply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalTx

func (o *ResponsesState) GetTotalTx() int64

GetTotalTx returns the TotalTx field value if set, zero value otherwise.

func (*ResponsesState) GetTotalTxOk

func (o *ResponsesState) GetTotalTxOk() (*int64, bool)

GetTotalTxOk returns a tuple with the TotalTx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalValidators

func (o *ResponsesState) GetTotalValidators() int64

GetTotalValidators returns the TotalValidators field value if set, zero value otherwise.

func (*ResponsesState) GetTotalValidatorsOk

func (o *ResponsesState) GetTotalValidatorsOk() (*int64, bool)

GetTotalValidatorsOk returns a tuple with the TotalValidators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) GetTotalVotingPower

func (o *ResponsesState) GetTotalVotingPower() string

GetTotalVotingPower returns the TotalVotingPower field value if set, zero value otherwise.

func (*ResponsesState) GetTotalVotingPowerOk

func (o *ResponsesState) GetTotalVotingPowerOk() (*string, bool)

GetTotalVotingPowerOk returns a tuple with the TotalVotingPower field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesState) HasChainId

func (o *ResponsesState) HasChainId() bool

HasChainId returns a boolean if a field has been set.

func (*ResponsesState) HasHash

func (o *ResponsesState) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesState) HasId

func (o *ResponsesState) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesState) HasLastHeight

func (o *ResponsesState) HasLastHeight() bool

HasLastHeight returns a boolean if a field has been set.

func (*ResponsesState) HasLastTime

func (o *ResponsesState) HasLastTime() bool

HasLastTime returns a boolean if a field has been set.

func (*ResponsesState) HasName

func (o *ResponsesState) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResponsesState) HasSynced

func (o *ResponsesState) HasSynced() bool

HasSynced returns a boolean if a field has been set.

func (*ResponsesState) HasTotalAccounts

func (o *ResponsesState) HasTotalAccounts() bool

HasTotalAccounts returns a boolean if a field has been set.

func (*ResponsesState) HasTotalBlobsSize

func (o *ResponsesState) HasTotalBlobsSize() bool

HasTotalBlobsSize returns a boolean if a field has been set.

func (*ResponsesState) HasTotalFee

func (o *ResponsesState) HasTotalFee() bool

HasTotalFee returns a boolean if a field has been set.

func (*ResponsesState) HasTotalStake

func (o *ResponsesState) HasTotalStake() bool

HasTotalStake returns a boolean if a field has been set.

func (*ResponsesState) HasTotalSupply

func (o *ResponsesState) HasTotalSupply() bool

HasTotalSupply returns a boolean if a field has been set.

func (*ResponsesState) HasTotalTx

func (o *ResponsesState) HasTotalTx() bool

HasTotalTx returns a boolean if a field has been set.

func (*ResponsesState) HasTotalValidators

func (o *ResponsesState) HasTotalValidators() bool

HasTotalValidators returns a boolean if a field has been set.

func (*ResponsesState) HasTotalVotingPower

func (o *ResponsesState) HasTotalVotingPower() bool

HasTotalVotingPower returns a boolean if a field has been set.

func (ResponsesState) MarshalJSON

func (o ResponsesState) MarshalJSON() ([]byte, error)

func (*ResponsesState) SetChainId

func (o *ResponsesState) SetChainId(v string)

SetChainId gets a reference to the given string and assigns it to the ChainId field.

func (*ResponsesState) SetHash

func (o *ResponsesState) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*ResponsesState) SetId

func (o *ResponsesState) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesState) SetLastHeight

func (o *ResponsesState) SetLastHeight(v int64)

SetLastHeight gets a reference to the given int64 and assigns it to the LastHeight field.

func (*ResponsesState) SetLastTime

func (o *ResponsesState) SetLastTime(v time.Time)

SetLastTime gets a reference to the given time.Time and assigns it to the LastTime field.

func (*ResponsesState) SetName

func (o *ResponsesState) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResponsesState) SetSynced

func (o *ResponsesState) SetSynced(v bool)

SetSynced gets a reference to the given bool and assigns it to the Synced field.

func (*ResponsesState) SetTotalAccounts

func (o *ResponsesState) SetTotalAccounts(v int64)

SetTotalAccounts gets a reference to the given int64 and assigns it to the TotalAccounts field.

func (*ResponsesState) SetTotalBlobsSize

func (o *ResponsesState) SetTotalBlobsSize(v int64)

SetTotalBlobsSize gets a reference to the given int64 and assigns it to the TotalBlobsSize field.

func (*ResponsesState) SetTotalFee

func (o *ResponsesState) SetTotalFee(v string)

SetTotalFee gets a reference to the given string and assigns it to the TotalFee field.

func (*ResponsesState) SetTotalStake

func (o *ResponsesState) SetTotalStake(v string)

SetTotalStake gets a reference to the given string and assigns it to the TotalStake field.

func (*ResponsesState) SetTotalSupply

func (o *ResponsesState) SetTotalSupply(v string)

SetTotalSupply gets a reference to the given string and assigns it to the TotalSupply field.

func (*ResponsesState) SetTotalTx

func (o *ResponsesState) SetTotalTx(v int64)

SetTotalTx gets a reference to the given int64 and assigns it to the TotalTx field.

func (*ResponsesState) SetTotalValidators

func (o *ResponsesState) SetTotalValidators(v int64)

SetTotalValidators gets a reference to the given int64 and assigns it to the TotalValidators field.

func (*ResponsesState) SetTotalVotingPower

func (o *ResponsesState) SetTotalVotingPower(v string)

SetTotalVotingPower gets a reference to the given string and assigns it to the TotalVotingPower field.

func (ResponsesState) ToMap

func (o ResponsesState) ToMap() (map[string]interface{}, error)

type ResponsesTPS

type ResponsesTPS struct {
	ChangeLastHourPct *float32 `json:"change_last_hour_pct,omitempty"`
	Current           *float32 `json:"current,omitempty"`
	High              *float32 `json:"high,omitempty"`
	Low               *float32 `json:"low,omitempty"`
}

ResponsesTPS struct for ResponsesTPS

func NewResponsesTPS

func NewResponsesTPS() *ResponsesTPS

NewResponsesTPS instantiates a new ResponsesTPS 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

func NewResponsesTPSWithDefaults

func NewResponsesTPSWithDefaults() *ResponsesTPS

NewResponsesTPSWithDefaults instantiates a new ResponsesTPS 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

func (*ResponsesTPS) GetChangeLastHourPct

func (o *ResponsesTPS) GetChangeLastHourPct() float32

GetChangeLastHourPct returns the ChangeLastHourPct field value if set, zero value otherwise.

func (*ResponsesTPS) GetChangeLastHourPctOk

func (o *ResponsesTPS) GetChangeLastHourPctOk() (*float32, bool)

GetChangeLastHourPctOk returns a tuple with the ChangeLastHourPct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTPS) GetCurrent

func (o *ResponsesTPS) GetCurrent() float32

GetCurrent returns the Current field value if set, zero value otherwise.

func (*ResponsesTPS) GetCurrentOk

func (o *ResponsesTPS) GetCurrentOk() (*float32, bool)

GetCurrentOk returns a tuple with the Current field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTPS) GetHigh

func (o *ResponsesTPS) GetHigh() float32

GetHigh returns the High field value if set, zero value otherwise.

func (*ResponsesTPS) GetHighOk

func (o *ResponsesTPS) GetHighOk() (*float32, bool)

GetHighOk returns a tuple with the High field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTPS) GetLow

func (o *ResponsesTPS) GetLow() float32

GetLow returns the Low field value if set, zero value otherwise.

func (*ResponsesTPS) GetLowOk

func (o *ResponsesTPS) GetLowOk() (*float32, bool)

GetLowOk returns a tuple with the Low field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTPS) HasChangeLastHourPct

func (o *ResponsesTPS) HasChangeLastHourPct() bool

HasChangeLastHourPct returns a boolean if a field has been set.

func (*ResponsesTPS) HasCurrent

func (o *ResponsesTPS) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*ResponsesTPS) HasHigh

func (o *ResponsesTPS) HasHigh() bool

HasHigh returns a boolean if a field has been set.

func (*ResponsesTPS) HasLow

func (o *ResponsesTPS) HasLow() bool

HasLow returns a boolean if a field has been set.

func (ResponsesTPS) MarshalJSON

func (o ResponsesTPS) MarshalJSON() ([]byte, error)

func (*ResponsesTPS) SetChangeLastHourPct

func (o *ResponsesTPS) SetChangeLastHourPct(v float32)

SetChangeLastHourPct gets a reference to the given float32 and assigns it to the ChangeLastHourPct field.

func (*ResponsesTPS) SetCurrent

func (o *ResponsesTPS) SetCurrent(v float32)

SetCurrent gets a reference to the given float32 and assigns it to the Current field.

func (*ResponsesTPS) SetHigh

func (o *ResponsesTPS) SetHigh(v float32)

SetHigh gets a reference to the given float32 and assigns it to the High field.

func (*ResponsesTPS) SetLow

func (o *ResponsesTPS) SetLow(v float32)

SetLow gets a reference to the given float32 and assigns it to the Low field.

func (ResponsesTPS) ToMap

func (o ResponsesTPS) ToMap() (map[string]interface{}, error)

type ResponsesTimeValueItem

type ResponsesTimeValueItem struct {
	Time  *time.Time `json:"time,omitempty"`
	Value *string    `json:"value,omitempty"`
}

ResponsesTimeValueItem struct for ResponsesTimeValueItem

func NewResponsesTimeValueItem

func NewResponsesTimeValueItem() *ResponsesTimeValueItem

NewResponsesTimeValueItem instantiates a new ResponsesTimeValueItem 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

func NewResponsesTimeValueItemWithDefaults

func NewResponsesTimeValueItemWithDefaults() *ResponsesTimeValueItem

NewResponsesTimeValueItemWithDefaults instantiates a new ResponsesTimeValueItem 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

func (*ResponsesTimeValueItem) GetTime

func (o *ResponsesTimeValueItem) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesTimeValueItem) GetTimeOk

func (o *ResponsesTimeValueItem) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTimeValueItem) GetValue

func (o *ResponsesTimeValueItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ResponsesTimeValueItem) GetValueOk

func (o *ResponsesTimeValueItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTimeValueItem) HasTime

func (o *ResponsesTimeValueItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesTimeValueItem) HasValue

func (o *ResponsesTimeValueItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ResponsesTimeValueItem) MarshalJSON

func (o ResponsesTimeValueItem) MarshalJSON() ([]byte, error)

func (*ResponsesTimeValueItem) SetTime

func (o *ResponsesTimeValueItem) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesTimeValueItem) SetValue

func (o *ResponsesTimeValueItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ResponsesTimeValueItem) ToMap

func (o ResponsesTimeValueItem) ToMap() (map[string]interface{}, error)

type ResponsesTx

type ResponsesTx struct {
	Codespace     *string                                                       `json:"codespace,omitempty"`
	Error         *string                                                       `json:"error,omitempty"`
	EventsCount   *int64                                                        `json:"events_count,omitempty"`
	Fee           *string                                                       `json:"fee,omitempty"`
	GasUsed       *int64                                                        `json:"gas_used,omitempty"`
	GasWanted     *int64                                                        `json:"gas_wanted,omitempty"`
	Hash          **os.File                                                     `json:"hash,omitempty"`
	Height        *int64                                                        `json:"height,omitempty"`
	Id            *int64                                                        `json:"id,omitempty"`
	Memo          *string                                                       `json:"memo,omitempty"`
	MessageTypes  []TypesMsgType                                                `json:"message_types,omitempty"`
	Messages      []ResponsesMessage                                            `json:"messages,omitempty"`
	MessagesCount *int64                                                        `json:"messages_count,omitempty"`
	Position      *int64                                                        `json:"position,omitempty"`
	Signers       []string                                                      `json:"signers,omitempty"`
	Status        *GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus `json:"status,omitempty"`
	Time          *time.Time                                                    `json:"time,omitempty"`
	TimeoutHeight *int64                                                        `json:"timeout_height,omitempty"`
}

ResponsesTx struct for ResponsesTx

func NewResponsesTx

func NewResponsesTx() *ResponsesTx

NewResponsesTx instantiates a new ResponsesTx 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

func NewResponsesTxWithDefaults

func NewResponsesTxWithDefaults() *ResponsesTx

NewResponsesTxWithDefaults instantiates a new ResponsesTx 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

func (*ResponsesTx) GetCodespace

func (o *ResponsesTx) GetCodespace() string

GetCodespace returns the Codespace field value if set, zero value otherwise.

func (*ResponsesTx) GetCodespaceOk

func (o *ResponsesTx) GetCodespaceOk() (*string, bool)

GetCodespaceOk returns a tuple with the Codespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetError

func (o *ResponsesTx) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ResponsesTx) GetErrorOk

func (o *ResponsesTx) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetEventsCount

func (o *ResponsesTx) GetEventsCount() int64

GetEventsCount returns the EventsCount field value if set, zero value otherwise.

func (*ResponsesTx) GetEventsCountOk

func (o *ResponsesTx) GetEventsCountOk() (*int64, bool)

GetEventsCountOk returns a tuple with the EventsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetFee

func (o *ResponsesTx) GetFee() string

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesTx) GetFeeOk

func (o *ResponsesTx) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetGasUsed

func (o *ResponsesTx) GetGasUsed() int64

GetGasUsed returns the GasUsed field value if set, zero value otherwise.

func (*ResponsesTx) GetGasUsedOk

func (o *ResponsesTx) GetGasUsedOk() (*int64, bool)

GetGasUsedOk returns a tuple with the GasUsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetGasWanted

func (o *ResponsesTx) GetGasWanted() int64

GetGasWanted returns the GasWanted field value if set, zero value otherwise.

func (*ResponsesTx) GetGasWantedOk

func (o *ResponsesTx) GetGasWantedOk() (*int64, bool)

GetGasWantedOk returns a tuple with the GasWanted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetHash

func (o *ResponsesTx) GetHash() *os.File

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesTx) GetHashOk

func (o *ResponsesTx) GetHashOk() (**os.File, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetHeight

func (o *ResponsesTx) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesTx) GetHeightOk

func (o *ResponsesTx) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetId

func (o *ResponsesTx) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesTx) GetIdOk

func (o *ResponsesTx) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetMemo

func (o *ResponsesTx) GetMemo() string

GetMemo returns the Memo field value if set, zero value otherwise.

func (*ResponsesTx) GetMemoOk

func (o *ResponsesTx) GetMemoOk() (*string, bool)

GetMemoOk returns a tuple with the Memo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetMessageTypes

func (o *ResponsesTx) GetMessageTypes() []TypesMsgType

GetMessageTypes returns the MessageTypes field value if set, zero value otherwise.

func (*ResponsesTx) GetMessageTypesOk

func (o *ResponsesTx) GetMessageTypesOk() ([]TypesMsgType, bool)

GetMessageTypesOk returns a tuple with the MessageTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetMessages

func (o *ResponsesTx) GetMessages() []ResponsesMessage

GetMessages returns the Messages field value if set, zero value otherwise.

func (*ResponsesTx) GetMessagesCount

func (o *ResponsesTx) GetMessagesCount() int64

GetMessagesCount returns the MessagesCount field value if set, zero value otherwise.

func (*ResponsesTx) GetMessagesCountOk

func (o *ResponsesTx) GetMessagesCountOk() (*int64, bool)

GetMessagesCountOk returns a tuple with the MessagesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetMessagesOk

func (o *ResponsesTx) GetMessagesOk() ([]ResponsesMessage, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetPosition

func (o *ResponsesTx) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ResponsesTx) GetPositionOk

func (o *ResponsesTx) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetSigners

func (o *ResponsesTx) GetSigners() []string

GetSigners returns the Signers field value if set, zero value otherwise.

func (*ResponsesTx) GetSignersOk

func (o *ResponsesTx) GetSignersOk() ([]string, bool)

GetSignersOk returns a tuple with the Signers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ResponsesTx) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetTime

func (o *ResponsesTx) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesTx) GetTimeOk

func (o *ResponsesTx) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) GetTimeoutHeight

func (o *ResponsesTx) GetTimeoutHeight() int64

GetTimeoutHeight returns the TimeoutHeight field value if set, zero value otherwise.

func (*ResponsesTx) GetTimeoutHeightOk

func (o *ResponsesTx) GetTimeoutHeightOk() (*int64, bool)

GetTimeoutHeightOk returns a tuple with the TimeoutHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTx) HasCodespace

func (o *ResponsesTx) HasCodespace() bool

HasCodespace returns a boolean if a field has been set.

func (*ResponsesTx) HasError

func (o *ResponsesTx) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponsesTx) HasEventsCount

func (o *ResponsesTx) HasEventsCount() bool

HasEventsCount returns a boolean if a field has been set.

func (*ResponsesTx) HasFee

func (o *ResponsesTx) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesTx) HasGasUsed

func (o *ResponsesTx) HasGasUsed() bool

HasGasUsed returns a boolean if a field has been set.

func (*ResponsesTx) HasGasWanted

func (o *ResponsesTx) HasGasWanted() bool

HasGasWanted returns a boolean if a field has been set.

func (*ResponsesTx) HasHash

func (o *ResponsesTx) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesTx) HasHeight

func (o *ResponsesTx) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesTx) HasId

func (o *ResponsesTx) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesTx) HasMemo

func (o *ResponsesTx) HasMemo() bool

HasMemo returns a boolean if a field has been set.

func (*ResponsesTx) HasMessageTypes

func (o *ResponsesTx) HasMessageTypes() bool

HasMessageTypes returns a boolean if a field has been set.

func (*ResponsesTx) HasMessages

func (o *ResponsesTx) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*ResponsesTx) HasMessagesCount

func (o *ResponsesTx) HasMessagesCount() bool

HasMessagesCount returns a boolean if a field has been set.

func (*ResponsesTx) HasPosition

func (o *ResponsesTx) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ResponsesTx) HasSigners

func (o *ResponsesTx) HasSigners() bool

HasSigners returns a boolean if a field has been set.

func (*ResponsesTx) HasStatus

func (o *ResponsesTx) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ResponsesTx) HasTime

func (o *ResponsesTx) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesTx) HasTimeoutHeight

func (o *ResponsesTx) HasTimeoutHeight() bool

HasTimeoutHeight returns a boolean if a field has been set.

func (ResponsesTx) MarshalJSON

func (o ResponsesTx) MarshalJSON() ([]byte, error)

func (*ResponsesTx) SetCodespace

func (o *ResponsesTx) SetCodespace(v string)

SetCodespace gets a reference to the given string and assigns it to the Codespace field.

func (*ResponsesTx) SetError

func (o *ResponsesTx) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ResponsesTx) SetEventsCount

func (o *ResponsesTx) SetEventsCount(v int64)

SetEventsCount gets a reference to the given int64 and assigns it to the EventsCount field.

func (*ResponsesTx) SetFee

func (o *ResponsesTx) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (*ResponsesTx) SetGasUsed

func (o *ResponsesTx) SetGasUsed(v int64)

SetGasUsed gets a reference to the given int64 and assigns it to the GasUsed field.

func (*ResponsesTx) SetGasWanted

func (o *ResponsesTx) SetGasWanted(v int64)

SetGasWanted gets a reference to the given int64 and assigns it to the GasWanted field.

func (*ResponsesTx) SetHash

func (o *ResponsesTx) SetHash(v *os.File)

SetHash gets a reference to the given *os.File and assigns it to the Hash field.

func (*ResponsesTx) SetHeight

func (o *ResponsesTx) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ResponsesTx) SetId

func (o *ResponsesTx) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ResponsesTx) SetMemo

func (o *ResponsesTx) SetMemo(v string)

SetMemo gets a reference to the given string and assigns it to the Memo field.

func (*ResponsesTx) SetMessageTypes

func (o *ResponsesTx) SetMessageTypes(v []TypesMsgType)

SetMessageTypes gets a reference to the given []TypesMsgType and assigns it to the MessageTypes field.

func (*ResponsesTx) SetMessages

func (o *ResponsesTx) SetMessages(v []ResponsesMessage)

SetMessages gets a reference to the given []ResponsesMessage and assigns it to the Messages field.

func (*ResponsesTx) SetMessagesCount

func (o *ResponsesTx) SetMessagesCount(v int64)

SetMessagesCount gets a reference to the given int64 and assigns it to the MessagesCount field.

func (*ResponsesTx) SetPosition

func (o *ResponsesTx) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ResponsesTx) SetSigners

func (o *ResponsesTx) SetSigners(v []string)

SetSigners gets a reference to the given []string and assigns it to the Signers field.

func (*ResponsesTx) SetStatus

SetStatus gets a reference to the given GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus and assigns it to the Status field.

func (*ResponsesTx) SetTime

func (o *ResponsesTx) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesTx) SetTimeoutHeight

func (o *ResponsesTx) SetTimeoutHeight(v int64)

SetTimeoutHeight gets a reference to the given int64 and assigns it to the TimeoutHeight field.

func (ResponsesTx) ToMap

func (o ResponsesTx) ToMap() (map[string]interface{}, error)

type ResponsesTxForAddress

type ResponsesTxForAddress struct {
	Fee           *string                                                       `json:"fee,omitempty"`
	Hash          **os.File                                                     `json:"hash,omitempty"`
	MessageTypes  []TypesMsgType                                                `json:"message_types,omitempty"`
	MessagesCount *int64                                                        `json:"messages_count,omitempty"`
	Status        *GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus `json:"status,omitempty"`
}

ResponsesTxForAddress struct for ResponsesTxForAddress

func NewResponsesTxForAddress

func NewResponsesTxForAddress() *ResponsesTxForAddress

NewResponsesTxForAddress instantiates a new ResponsesTxForAddress 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

func NewResponsesTxForAddressWithDefaults

func NewResponsesTxForAddressWithDefaults() *ResponsesTxForAddress

NewResponsesTxForAddressWithDefaults instantiates a new ResponsesTxForAddress 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

func (*ResponsesTxForAddress) GetFee

func (o *ResponsesTxForAddress) GetFee() string

GetFee returns the Fee field value if set, zero value otherwise.

func (*ResponsesTxForAddress) GetFeeOk

func (o *ResponsesTxForAddress) GetFeeOk() (*string, bool)

GetFeeOk returns a tuple with the Fee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTxForAddress) GetHash

func (o *ResponsesTxForAddress) GetHash() *os.File

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesTxForAddress) GetHashOk

func (o *ResponsesTxForAddress) GetHashOk() (**os.File, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTxForAddress) GetMessageTypes

func (o *ResponsesTxForAddress) GetMessageTypes() []TypesMsgType

GetMessageTypes returns the MessageTypes field value if set, zero value otherwise.

func (*ResponsesTxForAddress) GetMessageTypesOk

func (o *ResponsesTxForAddress) GetMessageTypesOk() ([]TypesMsgType, bool)

GetMessageTypesOk returns a tuple with the MessageTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTxForAddress) GetMessagesCount

func (o *ResponsesTxForAddress) GetMessagesCount() int64

GetMessagesCount returns the MessagesCount field value if set, zero value otherwise.

func (*ResponsesTxForAddress) GetMessagesCountOk

func (o *ResponsesTxForAddress) GetMessagesCountOk() (*int64, bool)

GetMessagesCountOk returns a tuple with the MessagesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTxForAddress) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ResponsesTxForAddress) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesTxForAddress) HasFee

func (o *ResponsesTxForAddress) HasFee() bool

HasFee returns a boolean if a field has been set.

func (*ResponsesTxForAddress) HasHash

func (o *ResponsesTxForAddress) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesTxForAddress) HasMessageTypes

func (o *ResponsesTxForAddress) HasMessageTypes() bool

HasMessageTypes returns a boolean if a field has been set.

func (*ResponsesTxForAddress) HasMessagesCount

func (o *ResponsesTxForAddress) HasMessagesCount() bool

HasMessagesCount returns a boolean if a field has been set.

func (*ResponsesTxForAddress) HasStatus

func (o *ResponsesTxForAddress) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ResponsesTxForAddress) MarshalJSON

func (o ResponsesTxForAddress) MarshalJSON() ([]byte, error)

func (*ResponsesTxForAddress) SetFee

func (o *ResponsesTxForAddress) SetFee(v string)

SetFee gets a reference to the given string and assigns it to the Fee field.

func (*ResponsesTxForAddress) SetHash

func (o *ResponsesTxForAddress) SetHash(v *os.File)

SetHash gets a reference to the given *os.File and assigns it to the Hash field.

func (*ResponsesTxForAddress) SetMessageTypes

func (o *ResponsesTxForAddress) SetMessageTypes(v []TypesMsgType)

SetMessageTypes gets a reference to the given []TypesMsgType and assigns it to the MessageTypes field.

func (*ResponsesTxForAddress) SetMessagesCount

func (o *ResponsesTxForAddress) SetMessagesCount(v int64)

SetMessagesCount gets a reference to the given int64 and assigns it to the MessagesCount field.

func (*ResponsesTxForAddress) SetStatus

SetStatus gets a reference to the given GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus and assigns it to the Status field.

func (ResponsesTxForAddress) ToMap

func (o ResponsesTxForAddress) ToMap() (map[string]interface{}, error)

type ResponsesUndelegation

type ResponsesUndelegation struct {
	Amount         *string                  `json:"amount,omitempty"`
	CompletionTime *string                  `json:"completion_time,omitempty"`
	Delegator      *string                  `json:"delegator,omitempty"`
	Height         *int32                   `json:"height,omitempty"`
	Time           *string                  `json:"time,omitempty"`
	Validator      *ResponsesShortValidator `json:"validator,omitempty"`
}

ResponsesUndelegation struct for ResponsesUndelegation

func NewResponsesUndelegation

func NewResponsesUndelegation() *ResponsesUndelegation

NewResponsesUndelegation instantiates a new ResponsesUndelegation 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

func NewResponsesUndelegationWithDefaults

func NewResponsesUndelegationWithDefaults() *ResponsesUndelegation

NewResponsesUndelegationWithDefaults instantiates a new ResponsesUndelegation 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

func (*ResponsesUndelegation) GetAmount

func (o *ResponsesUndelegation) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetAmountOk

func (o *ResponsesUndelegation) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) GetCompletionTime

func (o *ResponsesUndelegation) GetCompletionTime() string

GetCompletionTime returns the CompletionTime field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetCompletionTimeOk

func (o *ResponsesUndelegation) GetCompletionTimeOk() (*string, bool)

GetCompletionTimeOk returns a tuple with the CompletionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) GetDelegator

func (o *ResponsesUndelegation) GetDelegator() string

GetDelegator returns the Delegator field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetDelegatorOk

func (o *ResponsesUndelegation) GetDelegatorOk() (*string, bool)

GetDelegatorOk returns a tuple with the Delegator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) GetHeight

func (o *ResponsesUndelegation) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetHeightOk

func (o *ResponsesUndelegation) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) GetTime

func (o *ResponsesUndelegation) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetTimeOk

func (o *ResponsesUndelegation) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) GetValidator

GetValidator returns the Validator field value if set, zero value otherwise.

func (*ResponsesUndelegation) GetValidatorOk

func (o *ResponsesUndelegation) GetValidatorOk() (*ResponsesShortValidator, bool)

GetValidatorOk returns a tuple with the Validator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesUndelegation) HasAmount

func (o *ResponsesUndelegation) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ResponsesUndelegation) HasCompletionTime

func (o *ResponsesUndelegation) HasCompletionTime() bool

HasCompletionTime returns a boolean if a field has been set.

func (*ResponsesUndelegation) HasDelegator

func (o *ResponsesUndelegation) HasDelegator() bool

HasDelegator returns a boolean if a field has been set.

func (*ResponsesUndelegation) HasHeight

func (o *ResponsesUndelegation) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesUndelegation) HasTime

func (o *ResponsesUndelegation) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesUndelegation) HasValidator

func (o *ResponsesUndelegation) HasValidator() bool

HasValidator returns a boolean if a field has been set.

func (ResponsesUndelegation) MarshalJSON

func (o ResponsesUndelegation) MarshalJSON() ([]byte, error)

func (*ResponsesUndelegation) SetAmount

func (o *ResponsesUndelegation) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*ResponsesUndelegation) SetCompletionTime

func (o *ResponsesUndelegation) SetCompletionTime(v string)

SetCompletionTime gets a reference to the given string and assigns it to the CompletionTime field.

func (*ResponsesUndelegation) SetDelegator

func (o *ResponsesUndelegation) SetDelegator(v string)

SetDelegator gets a reference to the given string and assigns it to the Delegator field.

func (*ResponsesUndelegation) SetHeight

func (o *ResponsesUndelegation) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesUndelegation) SetTime

func (o *ResponsesUndelegation) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (*ResponsesUndelegation) SetValidator

SetValidator gets a reference to the given ResponsesShortValidator and assigns it to the Validator field.

func (ResponsesUndelegation) ToMap

func (o ResponsesUndelegation) ToMap() (map[string]interface{}, error)

type ResponsesValidator

type ResponsesValidator struct {
	Address           *string `json:"address,omitempty"`
	Commissions       *string `json:"commissions,omitempty"`
	ConsAddress       *string `json:"cons_address,omitempty"`
	Contacts          *string `json:"contacts,omitempty"`
	Delegator         *string `json:"delegator,omitempty"`
	Details           *string `json:"details,omitempty"`
	Id                *int32  `json:"id,omitempty"`
	Identity          *string `json:"identity,omitempty"`
	Jailed            *bool   `json:"jailed,omitempty"`
	MaxChangeRate     *string `json:"max_change_rate,omitempty"`
	MaxRate           *string `json:"max_rate,omitempty"`
	MinSelfDelegation *string `json:"min_self_delegation,omitempty"`
	Moniker           *string `json:"moniker,omitempty"`
	Rate              *string `json:"rate,omitempty"`
	Rewards           *string `json:"rewards,omitempty"`
	Stake             *string `json:"stake,omitempty"`
	VotingPower       *string `json:"voting_power,omitempty"`
	Website           *string `json:"website,omitempty"`
}

ResponsesValidator struct for ResponsesValidator

func NewResponsesValidator

func NewResponsesValidator() *ResponsesValidator

NewResponsesValidator instantiates a new ResponsesValidator 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

func NewResponsesValidatorWithDefaults

func NewResponsesValidatorWithDefaults() *ResponsesValidator

NewResponsesValidatorWithDefaults instantiates a new ResponsesValidator 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

func (*ResponsesValidator) GetAddress

func (o *ResponsesValidator) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*ResponsesValidator) GetAddressOk

func (o *ResponsesValidator) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetCommissions

func (o *ResponsesValidator) GetCommissions() string

GetCommissions returns the Commissions field value if set, zero value otherwise.

func (*ResponsesValidator) GetCommissionsOk

func (o *ResponsesValidator) GetCommissionsOk() (*string, bool)

GetCommissionsOk returns a tuple with the Commissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetConsAddress

func (o *ResponsesValidator) GetConsAddress() string

GetConsAddress returns the ConsAddress field value if set, zero value otherwise.

func (*ResponsesValidator) GetConsAddressOk

func (o *ResponsesValidator) GetConsAddressOk() (*string, bool)

GetConsAddressOk returns a tuple with the ConsAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetContacts

func (o *ResponsesValidator) GetContacts() string

GetContacts returns the Contacts field value if set, zero value otherwise.

func (*ResponsesValidator) GetContactsOk

func (o *ResponsesValidator) GetContactsOk() (*string, bool)

GetContactsOk returns a tuple with the Contacts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetDelegator

func (o *ResponsesValidator) GetDelegator() string

GetDelegator returns the Delegator field value if set, zero value otherwise.

func (*ResponsesValidator) GetDelegatorOk

func (o *ResponsesValidator) GetDelegatorOk() (*string, bool)

GetDelegatorOk returns a tuple with the Delegator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetDetails

func (o *ResponsesValidator) GetDetails() string

GetDetails returns the Details field value if set, zero value otherwise.

func (*ResponsesValidator) GetDetailsOk

func (o *ResponsesValidator) GetDetailsOk() (*string, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetId

func (o *ResponsesValidator) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesValidator) GetIdOk

func (o *ResponsesValidator) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetIdentity

func (o *ResponsesValidator) GetIdentity() string

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ResponsesValidator) GetIdentityOk

func (o *ResponsesValidator) GetIdentityOk() (*string, bool)

GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetJailed

func (o *ResponsesValidator) GetJailed() bool

GetJailed returns the Jailed field value if set, zero value otherwise.

func (*ResponsesValidator) GetJailedOk

func (o *ResponsesValidator) GetJailedOk() (*bool, bool)

GetJailedOk returns a tuple with the Jailed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetMaxChangeRate

func (o *ResponsesValidator) GetMaxChangeRate() string

GetMaxChangeRate returns the MaxChangeRate field value if set, zero value otherwise.

func (*ResponsesValidator) GetMaxChangeRateOk

func (o *ResponsesValidator) GetMaxChangeRateOk() (*string, bool)

GetMaxChangeRateOk returns a tuple with the MaxChangeRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetMaxRate

func (o *ResponsesValidator) GetMaxRate() string

GetMaxRate returns the MaxRate field value if set, zero value otherwise.

func (*ResponsesValidator) GetMaxRateOk

func (o *ResponsesValidator) GetMaxRateOk() (*string, bool)

GetMaxRateOk returns a tuple with the MaxRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetMinSelfDelegation

func (o *ResponsesValidator) GetMinSelfDelegation() string

GetMinSelfDelegation returns the MinSelfDelegation field value if set, zero value otherwise.

func (*ResponsesValidator) GetMinSelfDelegationOk

func (o *ResponsesValidator) GetMinSelfDelegationOk() (*string, bool)

GetMinSelfDelegationOk returns a tuple with the MinSelfDelegation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetMoniker

func (o *ResponsesValidator) GetMoniker() string

GetMoniker returns the Moniker field value if set, zero value otherwise.

func (*ResponsesValidator) GetMonikerOk

func (o *ResponsesValidator) GetMonikerOk() (*string, bool)

GetMonikerOk returns a tuple with the Moniker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetRate

func (o *ResponsesValidator) GetRate() string

GetRate returns the Rate field value if set, zero value otherwise.

func (*ResponsesValidator) GetRateOk

func (o *ResponsesValidator) GetRateOk() (*string, bool)

GetRateOk returns a tuple with the Rate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetRewards

func (o *ResponsesValidator) GetRewards() string

GetRewards returns the Rewards field value if set, zero value otherwise.

func (*ResponsesValidator) GetRewardsOk

func (o *ResponsesValidator) GetRewardsOk() (*string, bool)

GetRewardsOk returns a tuple with the Rewards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetStake

func (o *ResponsesValidator) GetStake() string

GetStake returns the Stake field value if set, zero value otherwise.

func (*ResponsesValidator) GetStakeOk

func (o *ResponsesValidator) GetStakeOk() (*string, bool)

GetStakeOk returns a tuple with the Stake field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetVotingPower

func (o *ResponsesValidator) GetVotingPower() string

GetVotingPower returns the VotingPower field value if set, zero value otherwise.

func (*ResponsesValidator) GetVotingPowerOk

func (o *ResponsesValidator) GetVotingPowerOk() (*string, bool)

GetVotingPowerOk returns a tuple with the VotingPower field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) GetWebsite

func (o *ResponsesValidator) GetWebsite() string

GetWebsite returns the Website field value if set, zero value otherwise.

func (*ResponsesValidator) GetWebsiteOk

func (o *ResponsesValidator) GetWebsiteOk() (*string, bool)

GetWebsiteOk returns a tuple with the Website field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidator) HasAddress

func (o *ResponsesValidator) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*ResponsesValidator) HasCommissions

func (o *ResponsesValidator) HasCommissions() bool

HasCommissions returns a boolean if a field has been set.

func (*ResponsesValidator) HasConsAddress

func (o *ResponsesValidator) HasConsAddress() bool

HasConsAddress returns a boolean if a field has been set.

func (*ResponsesValidator) HasContacts

func (o *ResponsesValidator) HasContacts() bool

HasContacts returns a boolean if a field has been set.

func (*ResponsesValidator) HasDelegator

func (o *ResponsesValidator) HasDelegator() bool

HasDelegator returns a boolean if a field has been set.

func (*ResponsesValidator) HasDetails

func (o *ResponsesValidator) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*ResponsesValidator) HasId

func (o *ResponsesValidator) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesValidator) HasIdentity

func (o *ResponsesValidator) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*ResponsesValidator) HasJailed

func (o *ResponsesValidator) HasJailed() bool

HasJailed returns a boolean if a field has been set.

func (*ResponsesValidator) HasMaxChangeRate

func (o *ResponsesValidator) HasMaxChangeRate() bool

HasMaxChangeRate returns a boolean if a field has been set.

func (*ResponsesValidator) HasMaxRate

func (o *ResponsesValidator) HasMaxRate() bool

HasMaxRate returns a boolean if a field has been set.

func (*ResponsesValidator) HasMinSelfDelegation

func (o *ResponsesValidator) HasMinSelfDelegation() bool

HasMinSelfDelegation returns a boolean if a field has been set.

func (*ResponsesValidator) HasMoniker

func (o *ResponsesValidator) HasMoniker() bool

HasMoniker returns a boolean if a field has been set.

func (*ResponsesValidator) HasRate

func (o *ResponsesValidator) HasRate() bool

HasRate returns a boolean if a field has been set.

func (*ResponsesValidator) HasRewards

func (o *ResponsesValidator) HasRewards() bool

HasRewards returns a boolean if a field has been set.

func (*ResponsesValidator) HasStake

func (o *ResponsesValidator) HasStake() bool

HasStake returns a boolean if a field has been set.

func (*ResponsesValidator) HasVotingPower

func (o *ResponsesValidator) HasVotingPower() bool

HasVotingPower returns a boolean if a field has been set.

func (*ResponsesValidator) HasWebsite

func (o *ResponsesValidator) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (ResponsesValidator) MarshalJSON

func (o ResponsesValidator) MarshalJSON() ([]byte, error)

func (*ResponsesValidator) SetAddress

func (o *ResponsesValidator) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ResponsesValidator) SetCommissions

func (o *ResponsesValidator) SetCommissions(v string)

SetCommissions gets a reference to the given string and assigns it to the Commissions field.

func (*ResponsesValidator) SetConsAddress

func (o *ResponsesValidator) SetConsAddress(v string)

SetConsAddress gets a reference to the given string and assigns it to the ConsAddress field.

func (*ResponsesValidator) SetContacts

func (o *ResponsesValidator) SetContacts(v string)

SetContacts gets a reference to the given string and assigns it to the Contacts field.

func (*ResponsesValidator) SetDelegator

func (o *ResponsesValidator) SetDelegator(v string)

SetDelegator gets a reference to the given string and assigns it to the Delegator field.

func (*ResponsesValidator) SetDetails

func (o *ResponsesValidator) SetDetails(v string)

SetDetails gets a reference to the given string and assigns it to the Details field.

func (*ResponsesValidator) SetId

func (o *ResponsesValidator) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesValidator) SetIdentity

func (o *ResponsesValidator) SetIdentity(v string)

SetIdentity gets a reference to the given string and assigns it to the Identity field.

func (*ResponsesValidator) SetJailed

func (o *ResponsesValidator) SetJailed(v bool)

SetJailed gets a reference to the given bool and assigns it to the Jailed field.

func (*ResponsesValidator) SetMaxChangeRate

func (o *ResponsesValidator) SetMaxChangeRate(v string)

SetMaxChangeRate gets a reference to the given string and assigns it to the MaxChangeRate field.

func (*ResponsesValidator) SetMaxRate

func (o *ResponsesValidator) SetMaxRate(v string)

SetMaxRate gets a reference to the given string and assigns it to the MaxRate field.

func (*ResponsesValidator) SetMinSelfDelegation

func (o *ResponsesValidator) SetMinSelfDelegation(v string)

SetMinSelfDelegation gets a reference to the given string and assigns it to the MinSelfDelegation field.

func (*ResponsesValidator) SetMoniker

func (o *ResponsesValidator) SetMoniker(v string)

SetMoniker gets a reference to the given string and assigns it to the Moniker field.

func (*ResponsesValidator) SetRate

func (o *ResponsesValidator) SetRate(v string)

SetRate gets a reference to the given string and assigns it to the Rate field.

func (*ResponsesValidator) SetRewards

func (o *ResponsesValidator) SetRewards(v string)

SetRewards gets a reference to the given string and assigns it to the Rewards field.

func (*ResponsesValidator) SetStake

func (o *ResponsesValidator) SetStake(v string)

SetStake gets a reference to the given string and assigns it to the Stake field.

func (*ResponsesValidator) SetVotingPower

func (o *ResponsesValidator) SetVotingPower(v string)

SetVotingPower gets a reference to the given string and assigns it to the VotingPower field.

func (*ResponsesValidator) SetWebsite

func (o *ResponsesValidator) SetWebsite(v string)

SetWebsite gets a reference to the given string and assigns it to the Website field.

func (ResponsesValidator) ToMap

func (o ResponsesValidator) ToMap() (map[string]interface{}, error)

type ResponsesValidatorCount

type ResponsesValidatorCount struct {
	Active   *int32 `json:"active,omitempty"`
	Inactive *int32 `json:"inactive,omitempty"`
	Jailed   *int32 `json:"jailed,omitempty"`
	Total    *int32 `json:"total,omitempty"`
}

ResponsesValidatorCount struct for ResponsesValidatorCount

func NewResponsesValidatorCount

func NewResponsesValidatorCount() *ResponsesValidatorCount

NewResponsesValidatorCount instantiates a new ResponsesValidatorCount 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

func NewResponsesValidatorCountWithDefaults

func NewResponsesValidatorCountWithDefaults() *ResponsesValidatorCount

NewResponsesValidatorCountWithDefaults instantiates a new ResponsesValidatorCount 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

func (*ResponsesValidatorCount) GetActive

func (o *ResponsesValidatorCount) GetActive() int32

GetActive returns the Active field value if set, zero value otherwise.

func (*ResponsesValidatorCount) GetActiveOk

func (o *ResponsesValidatorCount) GetActiveOk() (*int32, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorCount) GetInactive

func (o *ResponsesValidatorCount) GetInactive() int32

GetInactive returns the Inactive field value if set, zero value otherwise.

func (*ResponsesValidatorCount) GetInactiveOk

func (o *ResponsesValidatorCount) GetInactiveOk() (*int32, bool)

GetInactiveOk returns a tuple with the Inactive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorCount) GetJailed

func (o *ResponsesValidatorCount) GetJailed() int32

GetJailed returns the Jailed field value if set, zero value otherwise.

func (*ResponsesValidatorCount) GetJailedOk

func (o *ResponsesValidatorCount) GetJailedOk() (*int32, bool)

GetJailedOk returns a tuple with the Jailed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorCount) GetTotal

func (o *ResponsesValidatorCount) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ResponsesValidatorCount) GetTotalOk

func (o *ResponsesValidatorCount) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorCount) HasActive

func (o *ResponsesValidatorCount) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ResponsesValidatorCount) HasInactive

func (o *ResponsesValidatorCount) HasInactive() bool

HasInactive returns a boolean if a field has been set.

func (*ResponsesValidatorCount) HasJailed

func (o *ResponsesValidatorCount) HasJailed() bool

HasJailed returns a boolean if a field has been set.

func (*ResponsesValidatorCount) HasTotal

func (o *ResponsesValidatorCount) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ResponsesValidatorCount) MarshalJSON

func (o ResponsesValidatorCount) MarshalJSON() ([]byte, error)

func (*ResponsesValidatorCount) SetActive

func (o *ResponsesValidatorCount) SetActive(v int32)

SetActive gets a reference to the given int32 and assigns it to the Active field.

func (*ResponsesValidatorCount) SetInactive

func (o *ResponsesValidatorCount) SetInactive(v int32)

SetInactive gets a reference to the given int32 and assigns it to the Inactive field.

func (*ResponsesValidatorCount) SetJailed

func (o *ResponsesValidatorCount) SetJailed(v int32)

SetJailed gets a reference to the given int32 and assigns it to the Jailed field.

func (*ResponsesValidatorCount) SetTotal

func (o *ResponsesValidatorCount) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (ResponsesValidatorCount) ToMap

func (o ResponsesValidatorCount) ToMap() (map[string]interface{}, error)

type ResponsesValidatorUptime

type ResponsesValidatorUptime struct {
	Blocks []ResponsesSignedBlocks `json:"blocks,omitempty"`
	Uptime *string                 `json:"uptime,omitempty"`
}

ResponsesValidatorUptime struct for ResponsesValidatorUptime

func NewResponsesValidatorUptime

func NewResponsesValidatorUptime() *ResponsesValidatorUptime

NewResponsesValidatorUptime instantiates a new ResponsesValidatorUptime 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

func NewResponsesValidatorUptimeWithDefaults

func NewResponsesValidatorUptimeWithDefaults() *ResponsesValidatorUptime

NewResponsesValidatorUptimeWithDefaults instantiates a new ResponsesValidatorUptime 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

func (*ResponsesValidatorUptime) GetBlocks

GetBlocks returns the Blocks field value if set, zero value otherwise.

func (*ResponsesValidatorUptime) GetBlocksOk

func (o *ResponsesValidatorUptime) GetBlocksOk() ([]ResponsesSignedBlocks, bool)

GetBlocksOk returns a tuple with the Blocks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorUptime) GetUptime

func (o *ResponsesValidatorUptime) GetUptime() string

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*ResponsesValidatorUptime) GetUptimeOk

func (o *ResponsesValidatorUptime) GetUptimeOk() (*string, bool)

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesValidatorUptime) HasBlocks

func (o *ResponsesValidatorUptime) HasBlocks() bool

HasBlocks returns a boolean if a field has been set.

func (*ResponsesValidatorUptime) HasUptime

func (o *ResponsesValidatorUptime) HasUptime() bool

HasUptime returns a boolean if a field has been set.

func (ResponsesValidatorUptime) MarshalJSON

func (o ResponsesValidatorUptime) MarshalJSON() ([]byte, error)

func (*ResponsesValidatorUptime) SetBlocks

SetBlocks gets a reference to the given []ResponsesSignedBlocks and assigns it to the Blocks field.

func (*ResponsesValidatorUptime) SetUptime

func (o *ResponsesValidatorUptime) SetUptime(v string)

SetUptime gets a reference to the given string and assigns it to the Uptime field.

func (ResponsesValidatorUptime) ToMap

func (o ResponsesValidatorUptime) ToMap() (map[string]interface{}, error)

type ResponsesVesting

type ResponsesVesting struct {
	Amount    *string    `json:"amount,omitempty"`
	EndTime   *time.Time `json:"end_time,omitempty"`
	Hash      **os.File  `json:"hash,omitempty"`
	Height    *int32     `json:"height,omitempty"`
	Id        *int32     `json:"id,omitempty"`
	StartTime *time.Time `json:"start_time,omitempty"`
	Time      *time.Time `json:"time,omitempty"`
	Type      *string    `json:"type,omitempty"`
}

ResponsesVesting struct for ResponsesVesting

func NewResponsesVesting

func NewResponsesVesting() *ResponsesVesting

NewResponsesVesting instantiates a new ResponsesVesting 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

func NewResponsesVestingWithDefaults

func NewResponsesVestingWithDefaults() *ResponsesVesting

NewResponsesVestingWithDefaults instantiates a new ResponsesVesting 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

func (*ResponsesVesting) GetAmount

func (o *ResponsesVesting) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ResponsesVesting) GetAmountOk

func (o *ResponsesVesting) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetEndTime

func (o *ResponsesVesting) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ResponsesVesting) GetEndTimeOk

func (o *ResponsesVesting) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetHash

func (o *ResponsesVesting) GetHash() *os.File

GetHash returns the Hash field value if set, zero value otherwise.

func (*ResponsesVesting) GetHashOk

func (o *ResponsesVesting) GetHashOk() (**os.File, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetHeight

func (o *ResponsesVesting) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ResponsesVesting) GetHeightOk

func (o *ResponsesVesting) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetId

func (o *ResponsesVesting) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ResponsesVesting) GetIdOk

func (o *ResponsesVesting) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetStartTime

func (o *ResponsesVesting) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ResponsesVesting) GetStartTimeOk

func (o *ResponsesVesting) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetTime

func (o *ResponsesVesting) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesVesting) GetTimeOk

func (o *ResponsesVesting) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) GetType

func (o *ResponsesVesting) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResponsesVesting) GetTypeOk

func (o *ResponsesVesting) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVesting) HasAmount

func (o *ResponsesVesting) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ResponsesVesting) HasEndTime

func (o *ResponsesVesting) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ResponsesVesting) HasHash

func (o *ResponsesVesting) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*ResponsesVesting) HasHeight

func (o *ResponsesVesting) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ResponsesVesting) HasId

func (o *ResponsesVesting) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResponsesVesting) HasStartTime

func (o *ResponsesVesting) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*ResponsesVesting) HasTime

func (o *ResponsesVesting) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ResponsesVesting) HasType

func (o *ResponsesVesting) HasType() bool

HasType returns a boolean if a field has been set.

func (ResponsesVesting) MarshalJSON

func (o ResponsesVesting) MarshalJSON() ([]byte, error)

func (*ResponsesVesting) SetAmount

func (o *ResponsesVesting) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*ResponsesVesting) SetEndTime

func (o *ResponsesVesting) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*ResponsesVesting) SetHash

func (o *ResponsesVesting) SetHash(v *os.File)

SetHash gets a reference to the given *os.File and assigns it to the Hash field.

func (*ResponsesVesting) SetHeight

func (o *ResponsesVesting) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ResponsesVesting) SetId

func (o *ResponsesVesting) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ResponsesVesting) SetStartTime

func (o *ResponsesVesting) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*ResponsesVesting) SetTime

func (o *ResponsesVesting) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ResponsesVesting) SetType

func (o *ResponsesVesting) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ResponsesVesting) ToMap

func (o ResponsesVesting) ToMap() (map[string]interface{}, error)

type ResponsesVestingPeriod

type ResponsesVestingPeriod struct {
	Amount *string    `json:"amount,omitempty"`
	Time   *time.Time `json:"time,omitempty"`
}

ResponsesVestingPeriod struct for ResponsesVestingPeriod

func NewResponsesVestingPeriod

func NewResponsesVestingPeriod() *ResponsesVestingPeriod

NewResponsesVestingPeriod instantiates a new ResponsesVestingPeriod 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

func NewResponsesVestingPeriodWithDefaults

func NewResponsesVestingPeriodWithDefaults() *ResponsesVestingPeriod

NewResponsesVestingPeriodWithDefaults instantiates a new ResponsesVestingPeriod 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

func (*ResponsesVestingPeriod) GetAmount

func (o *ResponsesVestingPeriod) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ResponsesVestingPeriod) GetAmountOk

func (o *ResponsesVestingPeriod) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVestingPeriod) GetTime

func (o *ResponsesVestingPeriod) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ResponsesVestingPeriod) GetTimeOk

func (o *ResponsesVestingPeriod) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponsesVestingPeriod) HasAmount

func (o *ResponsesVestingPeriod) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ResponsesVestingPeriod) HasTime

func (o *ResponsesVestingPeriod) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ResponsesVestingPeriod) MarshalJSON

func (o ResponsesVestingPeriod) MarshalJSON() ([]byte, error)

func (*ResponsesVestingPeriod) SetAmount

func (o *ResponsesVestingPeriod) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*ResponsesVestingPeriod) SetTime

func (o *ResponsesVestingPeriod) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (ResponsesVestingPeriod) ToMap

func (o ResponsesVestingPeriod) ToMap() (map[string]interface{}, error)

type RollupAPIService

type RollupAPIService service

RollupAPIService RollupAPI service

func (*RollupAPIService) GetRollup

GetRollup Get rollup info

Get rollup info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@return ApiGetRollupRequest

func (*RollupAPIService) GetRollupAllSeries

func (a *RollupAPIService) GetRollupAllSeries(ctx context.Context) ApiGetRollupAllSeriesRequest

GetRollupAllSeries Get series for all rollups

Get series for all rollups

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRollupAllSeriesRequest

func (*RollupAPIService) GetRollupAllSeriesExecute

Execute executes the request

@return []ResponsesRollupAllSeriesItem

func (*RollupAPIService) GetRollupBlobs

func (a *RollupAPIService) GetRollupBlobs(ctx context.Context, id int32) ApiGetRollupBlobsRequest

GetRollupBlobs Get rollup blobs

Get rollup blobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@return ApiGetRollupBlobsRequest

func (*RollupAPIService) GetRollupBlobsExecute

func (a *RollupAPIService) GetRollupBlobsExecute(r ApiGetRollupBlobsRequest) ([]ResponsesBlobLog, *http.Response, error)

Execute executes the request

@return []ResponsesBlobLog

func (*RollupAPIService) GetRollupBySlug

func (a *RollupAPIService) GetRollupBySlug(ctx context.Context, slug string) ApiGetRollupBySlugRequest

GetRollupBySlug Get rollup by slug

Get rollup by slug

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param slug Slug
@return ApiGetRollupBySlugRequest

func (*RollupAPIService) GetRollupBySlugExecute

func (a *RollupAPIService) GetRollupBySlugExecute(r ApiGetRollupBySlugRequest) (*ResponsesRollup, *http.Response, error)

Execute executes the request

@return ResponsesRollup

func (*RollupAPIService) GetRollupDistribution

func (a *RollupAPIService) GetRollupDistribution(ctx context.Context, id int32, name string, timeframe string) ApiGetRollupDistributionRequest

GetRollupDistribution Get rollup distribution

Get rollup distribution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@param name Series name
@param timeframe Timeframe
@return ApiGetRollupDistributionRequest

func (*RollupAPIService) GetRollupDistributionExecute

Execute executes the request

@return []ResponsesDistributionItem

func (*RollupAPIService) GetRollupExecute

Execute executes the request

@return ResponsesRollup

func (*RollupAPIService) GetRollupNamespaces

func (a *RollupAPIService) GetRollupNamespaces(ctx context.Context, id int32) ApiGetRollupNamespacesRequest

GetRollupNamespaces Get rollup namespaces info

Get rollup namespaces info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@return ApiGetRollupNamespacesRequest

func (*RollupAPIService) GetRollupNamespacesExecute

func (a *RollupAPIService) GetRollupNamespacesExecute(r ApiGetRollupNamespacesRequest) ([]ResponsesNamespace, *http.Response, error)

Execute executes the request

@return []ResponsesNamespace

func (*RollupAPIService) GetRollupStats

func (a *RollupAPIService) GetRollupStats(ctx context.Context, id int32, name string, timeframe string) ApiGetRollupStatsRequest

GetRollupStats Get rollup stats

Get rollup stats

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@param name Series name
@param timeframe Timeframe
@return ApiGetRollupStatsRequest

func (*RollupAPIService) GetRollupStatsExecute

Execute executes the request

@return []ResponsesHistogramItem

func (*RollupAPIService) GetRollupsCount

GetRollupsCount Get count of rollups in network

Get count of rollups in network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRollupsCountRequest

func (*RollupAPIService) GetRollupsCountExecute

func (a *RollupAPIService) GetRollupsCountExecute(r ApiGetRollupsCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*RollupAPIService) ListRollup

ListRollup List rollups info

List rollups info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRollupRequest

func (*RollupAPIService) ListRollup24h

ListRollup24h List rollups info with stats by previous 24 hours

List rollups info with stats by previous 24 hours

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRollup24hRequest

func (*RollupAPIService) ListRollup24hExecute

Execute executes the request

@return []ResponsesRollupWithDayStats

func (*RollupAPIService) ListRollupExecute

Execute executes the request

@return []ResponsesRollupWithStats

func (*RollupAPIService) RollupExport

func (a *RollupAPIService) RollupExport(ctx context.Context, id int32) ApiRollupExportRequest

RollupExport Export rollup blobs

Export rollup blobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@return ApiRollupExportRequest

func (*RollupAPIService) RollupExportExecute

func (a *RollupAPIService) RollupExportExecute(r ApiRollupExportRequest) (*http.Response, error)

Execute executes the request

func (*RollupAPIService) RollupGroupedStatistics added in v1.10.9

func (a *RollupAPIService) RollupGroupedStatistics(ctx context.Context) ApiRollupGroupedStatisticsRequest

RollupGroupedStatistics Rollup Grouped Statistics

Rollup Grouped Statistics

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRollupGroupedStatisticsRequest

func (*RollupAPIService) RollupGroupedStatisticsExecute added in v1.10.9

Execute executes the request

@return []ResponsesRollupGroupedStats

type SearchAPIService

type SearchAPIService service

SearchAPIService SearchAPI service

func (*SearchAPIService) Search

Search Search by hash

Endpoint finds entity by hash (block, address, validator, namespace and tx). It returns array of `responses.SearchItem` entities.

### Block

Block will be found by its hash. Hash example: `652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF`. Hash should be hexadecimal and has a length of 64.

#### Example response

```json

{
    "type": "block",
    "result": {
        "id": 1,
        "hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
        // ... rest fields from response.Block type
    }
}

```

### Tx

Tx will be found by its hash. Hash example: `652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF`. Tx should be hexadecimal and has a length of 64.

#### Example response

```json

{
    "type": "tx",
    "result": {
        "id": 1,
        "hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
        // ... rest fields from response.Tx type
    }
}

```

### Address

The Address will be found by its hash. Hash example: `celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60`. Address has prefix `celestia` and has length 47. Also, it should be decoded by `bech32`.

#### Example response

```json

{
    "type": "address",
    "result": {
        "id": 1,
        "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60",
        "height": 100,
        "balance": "6525472354"
    }
}

```

### Namespace

Namespace can be found by base64 hash and identity pair version + namespace id. Hash example: `U3dhZ2dlciByb2Nrcw==`. Identity pair example: `014723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02`

#### Example response

```json

{
    "type": "namespace",
    "result": {
        "id": 1,
        "hash": "U3dhZ2dlciByb2Nrcw==",
        "version": 1,
        "namespace_id": "4723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02"
        // ... rest fields from response.Namespace type
    }
}

```

### Validator

Validator can be found by moniker prefix. For example: names `Node 1` and `Node 2` can be found with query string `Node`

#### Example response

```json

{
    "type": "validator",
    "result": {
        "id": 1,
        "moniker": "Node 1",
        // ... rest fields from response.Validator type
    }
}

```

### Rollup

Rollup can be found by name prefix. For example: rollup with names `Rollup 1` and `Rollup 2` can be found with query string `Rol`

#### Example response

```json

{
    "type": "rollup",
    "result": {
        "id": 1,
        "moniker": "Rollup 1",
        // ... rest fields from response.Rollup type
    }
}

```

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchRequest

func (*SearchAPIService) SearchExecute

Execute executes the request

@return []ResponsesSearchItem

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StatsAPIService

type StatsAPIService service

StatsAPIService StatsAPI service

func (*StatsAPIService) Stats24hChanges

func (a *StatsAPIService) Stats24hChanges(ctx context.Context) ApiStats24hChangesRequest

Stats24hChanges Get changes for 24 hours

Get changes for 24 hours

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStats24hChangesRequest

func (*StatsAPIService) Stats24hChangesExecute

Execute executes the request

@return []ResponsesChange24hBlockStats

func (*StatsAPIService) StatsMessagesCount24h

func (a *StatsAPIService) StatsMessagesCount24h(ctx context.Context) ApiStatsMessagesCount24hRequest

StatsMessagesCount24h Get messages distribution for the last 24 hours

Get messages distribution for the last 24 hours

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatsMessagesCount24hRequest

func (*StatsAPIService) StatsMessagesCount24hExecute

func (a *StatsAPIService) StatsMessagesCount24hExecute(r ApiStatsMessagesCount24hRequest) ([]ResponsesCountItem, *http.Response, error)

Execute executes the request

@return []ResponsesCountItem

func (*StatsAPIService) StatsNamespaceUsage

func (a *StatsAPIService) StatsNamespaceUsage(ctx context.Context) ApiStatsNamespaceUsageRequest

StatsNamespaceUsage Get namespaces with sorting by size.

Get namespaces with sorting by size. Returns top 100 namespaces. Namespaces which is not included to top 100 grouped into 'others' item

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatsNamespaceUsageRequest

func (*StatsAPIService) StatsNamespaceUsageExecute

Execute executes the request

@return []ResponsesNamespaceUsage

func (*StatsAPIService) StatsNsSeries

func (a *StatsAPIService) StatsNsSeries(ctx context.Context, id string, timeframe string, name string) ApiStatsNsSeriesRequest

StatsNsSeries Get histogram for namespace with precomputed stats

Get histogram for namespace with precomputed stats by series name and timeframe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Namespace id in hexadecimal
@param timeframe Timeframe
@param name Series name
@return ApiStatsNsSeriesRequest

func (*StatsAPIService) StatsNsSeriesExecute

Execute executes the request

@return []ResponsesSeriesItem

func (*StatsAPIService) StatsPriceCurrent

func (a *StatsAPIService) StatsPriceCurrent(ctx context.Context) ApiStatsPriceCurrentRequest

StatsPriceCurrent Get current TIA price

Get current TIA price

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatsPriceCurrentRequest

func (*StatsAPIService) StatsPriceCurrentExecute

func (a *StatsAPIService) StatsPriceCurrentExecute(r ApiStatsPriceCurrentRequest) (*ResponsesPrice, *http.Response, error)

Execute executes the request

@return ResponsesPrice

func (*StatsAPIService) StatsPriceSeries

func (a *StatsAPIService) StatsPriceSeries(ctx context.Context, timeframe string) ApiStatsPriceSeriesRequest

StatsPriceSeries Get histogram with TIA price

Get histogram with TIA price

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeframe Timeframe
@return ApiStatsPriceSeriesRequest

func (*StatsAPIService) StatsPriceSeriesExecute

func (a *StatsAPIService) StatsPriceSeriesExecute(r ApiStatsPriceSeriesRequest) ([]ResponsesPrice, *http.Response, error)

Execute executes the request

@return []ResponsesPrice

func (*StatsAPIService) StatsRollup24h

StatsRollup24h Get rollups stats for last 24 hours

Get rollups stats for last 24 hours

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatsRollup24hRequest

func (*StatsAPIService) StatsRollup24hExecute

Execute executes the request

@return []ResponsesRollupStats24h

func (*StatsAPIService) StatsSeries

func (a *StatsAPIService) StatsSeries(ctx context.Context, timeframe string, name string) ApiStatsSeriesRequest

StatsSeries Get histogram with precomputed stats

Get histogram with precomputed stats by series name and timeframe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeframe Timeframe
@param name Series name
@return ApiStatsSeriesRequest

func (*StatsAPIService) StatsSeriesCumulative

func (a *StatsAPIService) StatsSeriesCumulative(ctx context.Context, timeframe string, name string) ApiStatsSeriesCumulativeRequest

StatsSeriesCumulative Get cumulative histogram with precomputed stats

Get cumulative histogram with precomputed stats by series name and timeframe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeframe Timeframe
@param name Series name
@return ApiStatsSeriesCumulativeRequest

func (*StatsAPIService) StatsSeriesCumulativeExecute

func (a *StatsAPIService) StatsSeriesCumulativeExecute(r ApiStatsSeriesCumulativeRequest) ([]ResponsesSeriesItem, *http.Response, error)

Execute executes the request

@return []ResponsesSeriesItem

func (*StatsAPIService) StatsSeriesExecute

Execute executes the request

@return []ResponsesSeriesItem

func (*StatsAPIService) StatsSquareSize

func (a *StatsAPIService) StatsSquareSize(ctx context.Context) ApiStatsSquareSizeRequest

StatsSquareSize Get histogram for square size distribution

Get histogram for square size distribution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatsSquareSizeRequest

func (*StatsAPIService) StatsSquareSizeExecute

func (a *StatsAPIService) StatsSquareSizeExecute(r ApiStatsSquareSizeRequest) ([]map[string][]ResponsesTimeValueItem, *http.Response, error)

Execute executes the request

@return []map[string][]ResponsesTimeValueItem

func (*StatsAPIService) StatsStakingSeries

func (a *StatsAPIService) StatsStakingSeries(ctx context.Context, id string, timeframe string, name string) ApiStatsStakingSeriesRequest

StatsStakingSeries Get histogram for staking with precomputed stats

Get histogram for staking with precomputed stats by series name and timeframe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Validator id
@param timeframe Timeframe
@param name Series name
@return ApiStatsStakingSeriesRequest

func (*StatsAPIService) StatsStakingSeriesExecute

func (a *StatsAPIService) StatsStakingSeriesExecute(r ApiStatsStakingSeriesRequest) ([]ResponsesSeriesItem, *http.Response, error)

Execute executes the request

@return []ResponsesSeriesItem

func (*StatsAPIService) StatsSummary

func (a *StatsAPIService) StatsSummary(ctx context.Context, table string, function string) ApiStatsSummaryRequest

StatsSummary Get value by table and function

Returns string value by passed table and function.

### Availiable tables * `block` * `block_stats` * `tx` * `message` * `event`

### Availiable functions * `sum` * `min` * `max` * `avg` * `count`

`Column` query parameter is required for functions `sum`, `min`, `max` and `avg` and should not pass for `count`.

### Availiable columns and functions for tables:

#### Block * `height` -- min max * `time` -- min max

#### Block stats * `height` -- min max * `time` -- min max * `tx_count` -- min max sum avg * `events_count` -- min max sum avg * `blobs_size` -- min max sum avg * `block_time` -- min max sum avg * `supply_chnge` -- min max sum avg * `inflation_rate` -- min max avg * `fee` -- min max sum avg * `gas_used` -- min max sum avg * `gas_limit` -- min max sum avg

#### Tx * `height` -- min max * `time` -- min max * `gas_wanted` -- min max sum avg * `gas_used` -- min max sum avg * `timeout_height` -- min max avg * `events_count` -- min max sum avg * `messages_count` -- min max sum avg * `fee` -- min max sum avg

#### Event * `height` -- min max * `time` -- min max

#### Message * `height` -- min max * `time` -- min max

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param table Table name
@param function Function name
@return ApiStatsSummaryRequest

func (*StatsAPIService) StatsSummaryExecute

func (a *StatsAPIService) StatsSummaryExecute(r ApiStatsSummaryRequest) (string, *http.Response, error)

Execute executes the request

@return string

type TransactionsAPIService

type TransactionsAPIService service

TransactionsAPIService TransactionsAPI service

func (*TransactionsAPIService) GetTransaction

GetTransaction Get transaction by hash

Get transaction by hash

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Transaction hash in hexadecimal
@return ApiGetTransactionRequest

func (*TransactionsAPIService) GetTransactionEvents

func (a *TransactionsAPIService) GetTransactionEvents(ctx context.Context, hash string) ApiGetTransactionEventsRequest

GetTransactionEvents Get transaction events

Get transaction events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Transaction hash in hexadecimal
@return ApiGetTransactionEventsRequest

func (*TransactionsAPIService) GetTransactionEventsExecute

Execute executes the request

@return []ResponsesEvent

func (*TransactionsAPIService) GetTransactionExecute

Execute executes the request

@return ResponsesTx

func (*TransactionsAPIService) GetTransactionMessages

func (a *TransactionsAPIService) GetTransactionMessages(ctx context.Context, hash string) ApiGetTransactionMessagesRequest

GetTransactionMessages Get transaction messages

Get transaction messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Transaction hash in hexadecimal
@return ApiGetTransactionMessagesRequest

func (*TransactionsAPIService) GetTransactionMessagesExecute

Execute executes the request

@return []ResponsesMessage

func (*TransactionsAPIService) GetTransactionsCount

GetTransactionsCount Get count of transactions in network

Get count of transactions in network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTransactionsCountRequest

func (*TransactionsAPIService) GetTransactionsCountExecute

func (a *TransactionsAPIService) GetTransactionsCountExecute(r ApiGetTransactionsCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

func (*TransactionsAPIService) ListGenesisTransactions

ListGenesisTransactions List genesis transactions info

List genesis transactions info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListGenesisTransactionsRequest

func (*TransactionsAPIService) ListGenesisTransactionsExecute

func (a *TransactionsAPIService) ListGenesisTransactionsExecute(r ApiListGenesisTransactionsRequest) ([]ResponsesTx, *http.Response, error)

Execute executes the request

@return []ResponsesTx

func (*TransactionsAPIService) ListTransactionBlobs

func (a *TransactionsAPIService) ListTransactionBlobs(ctx context.Context, hash string) ApiListTransactionBlobsRequest

ListTransactionBlobs List blobs which was pushed by transaction

List blobs which was pushed by transaction

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Transaction hash in hexadecimal
@return ApiListTransactionBlobsRequest

func (*TransactionsAPIService) ListTransactionBlobsExecute

Execute executes the request

@return []ResponsesBlobLog

func (*TransactionsAPIService) ListTransactions

ListTransactions List transactions info

List transactions info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListTransactionsRequest

func (*TransactionsAPIService) ListTransactionsExecute

func (a *TransactionsAPIService) ListTransactionsExecute(r ApiListTransactionsRequest) ([]ResponsesTx, *http.Response, error)

Execute executes the request

@return []ResponsesTx

func (*TransactionsAPIService) TransactionBlobsCount

func (a *TransactionsAPIService) TransactionBlobsCount(ctx context.Context, hash string) ApiTransactionBlobsCountRequest

TransactionBlobsCount Count of blobs which was pushed by transaction

Count of blobs which was pushed by transaction

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hash Transaction hash in hexadecimal
@return ApiTransactionBlobsCountRequest

func (*TransactionsAPIService) TransactionBlobsCountExecute

func (a *TransactionsAPIService) TransactionBlobsCountExecute(r ApiTransactionBlobsCountRequest) (int32, *http.Response, error)

Execute executes the request

@return int32

type TypesEventType

type TypesEventType string

TypesEventType the model 'TypesEventType'

const (
	EventTypeUnknown                        TypesEventType = "unknown"
	EventTypeCoinReceived                   TypesEventType = "coin_received"
	EventTypeCoinbase                       TypesEventType = "coinbase"
	EventTypeCoinSpent                      TypesEventType = "coin_spent"
	EventTypeBurn                           TypesEventType = "burn"
	EventTypeMint                           TypesEventType = "mint"
	EventTypeMessage                        TypesEventType = "message"
	EventTypeProposerReward                 TypesEventType = "proposer_reward"
	EventTypeRewards                        TypesEventType = "rewards"
	EventTypeCommission                     TypesEventType = "commission"
	EventTypeLiveness                       TypesEventType = "liveness"
	EventTypeTransfer                       TypesEventType = "transfer"
	EventTypeCelestiablobv1EventPayForBlobs TypesEventType = "celestia.blob.v1.EventPayForBlobs"
	EventTypeRedelegate                     TypesEventType = "redelegate"
	EventTypeAttestationRequest             TypesEventType = "AttestationRequest"
	EventTypeWithdrawRewards                TypesEventType = "withdraw_rewards"
	EventTypeWithdrawCommission             TypesEventType = "withdraw_commission"
	EventTypeSetWithdrawAddress             TypesEventType = "set_withdraw_address"
	EventTypeCreateValidator                TypesEventType = "create_validator"
	EventTypeDelegate                       TypesEventType = "delegate"
	EventTypeEditValidator                  TypesEventType = "edit_validator"
	EventTypeUnbond                         TypesEventType = "unbond"
	EventTypeTx                             TypesEventType = "tx"
	EventTypeCompleteRedelegation           TypesEventType = "complete_redelegation"
	EventTypeCompleteUnbonding              TypesEventType = "complete_unbonding"
	EventTypeUseFeegrant                    TypesEventType = "use_feegrant"
	EventTypeRevokeFeegrant                 TypesEventType = "revoke_feegrant"
	EventTypeSetFeegrant                    TypesEventType = "set_feegrant"
	EventTypeUpdateFeegrant                 TypesEventType = "update_feegrant"
	EventTypeSlash                          TypesEventType = "slash"
	EventTypeProposalVote                   TypesEventType = "proposal_vote"
	EventTypeProposalDeposit                TypesEventType = "proposal_deposit"
	EventTypeSubmitProposal                 TypesEventType = "submit_proposal"
	EventTypeCosmosauthzv1beta1EventGrant   TypesEventType = "cosmos.authz.v1beta1.EventGrant"
	EventTypeSendPacket                     TypesEventType = "send_packet"
	EventTypeIbcTransfer                    TypesEventType = "ibc_transfer"
	EventTypeFungibleTokenPacket            TypesEventType = "fungible_token_packet"
	EventTypeAcknowledgePacket              TypesEventType = "acknowledge_packet"
	EventTypeCreateClient                   TypesEventType = "create_client"
	EventTypeUpdateClient                   TypesEventType = "update_client"
	EventTypeConnectionOpenTry              TypesEventType = "connection_open_try"
	EventTypeConnectionOpenInit             TypesEventType = "connection_open_init"
	EventTypeConnectionOpenConfirm          TypesEventType = "connection_open_confirm"
	EventTypeConnectionOpenAck              TypesEventType = "connection_open_ack"
	EventTypeChannelOpenTry                 TypesEventType = "channel_open_try"
	EventTypeChannelOpenInit                TypesEventType = "channel_open_init"
	EventTypeChannelOpenConfirm             TypesEventType = "channel_open_confirm"
	EventTypeChannelOpenAck                 TypesEventType = "channel_open_ack"
	EventTypeRecvPacket                     TypesEventType = "recv_packet"
	EventTypeWriteAcknowledgement           TypesEventType = "write_acknowledgement"
	EventTypeTimeout                        TypesEventType = "timeout"
	EventTypeTimeoutPacket                  TypesEventType = "timeout_packet"
	EventTypeCosmosauthzv1beta1EventRevoke  TypesEventType = "cosmos.authz.v1beta1.EventRevoke"
	EventTypeCosmosauthzv1EventRevoke       TypesEventType = "cosmos.authz.v1.EventRevoke"
	EventTypeCancelUnbondingDelegation      TypesEventType = "cancel_unbonding_delegation"
	EventTypeActiveProposal                 TypesEventType = "active_proposal"
	EventTypeInactiveProposal               TypesEventType = "inactive_proposal"
	EventTypeIcs27Packet                    TypesEventType = "ics27_packet"
	EventTypeChannelCloseConfirm            TypesEventType = "channel_close_confirm"
)

List of types.EventType

func NewTypesEventTypeFromValue

func NewTypesEventTypeFromValue(v string) (*TypesEventType, error)

NewTypesEventTypeFromValue returns a pointer to a valid TypesEventType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TypesEventType) IsValid

func (v TypesEventType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TypesEventType) Ptr

func (v TypesEventType) Ptr() *TypesEventType

Ptr returns reference to types.EventType value

func (*TypesEventType) UnmarshalJSON

func (v *TypesEventType) UnmarshalJSON(src []byte) error

type TypesMsgAddressType

type TypesMsgAddressType string

TypesMsgAddressType the model 'TypesMsgAddressType'

const (
	MsgAddressTypeValidator          TypesMsgAddressType = "validator"
	MsgAddressTypeDelegator          TypesMsgAddressType = "delegator"
	MsgAddressTypeDepositor          TypesMsgAddressType = "depositor"
	MsgAddressTypeValidatorSrc       TypesMsgAddressType = "validatorSrc"
	MsgAddressTypeValidatorDst       TypesMsgAddressType = "validatorDst"
	MsgAddressTypeFromAddress        TypesMsgAddressType = "fromAddress"
	MsgAddressTypeToAddress          TypesMsgAddressType = "toAddress"
	MsgAddressTypeInput              TypesMsgAddressType = "input"
	MsgAddressTypeOutput             TypesMsgAddressType = "output"
	MsgAddressTypeGrantee            TypesMsgAddressType = "grantee"
	MsgAddressTypeGranter            TypesMsgAddressType = "granter"
	MsgAddressTypeSigner             TypesMsgAddressType = "signer"
	MsgAddressTypeWithdraw           TypesMsgAddressType = "withdraw"
	MsgAddressTypeVoter              TypesMsgAddressType = "voter"
	MsgAddressTypeProposer           TypesMsgAddressType = "proposer"
	MsgAddressTypeAuthority          TypesMsgAddressType = "authority"
	MsgAddressTypeSender             TypesMsgAddressType = "sender"
	MsgAddressTypeReceiver           TypesMsgAddressType = "receiver"
	MsgAddressTypeSubmitter          TypesMsgAddressType = "submitter"
	MsgAddressTypeAdmin              TypesMsgAddressType = "admin"
	MsgAddressTypeNewAdmin           TypesMsgAddressType = "newAdmin"
	MsgAddressTypeGroupPolicyAddress TypesMsgAddressType = "groupPolicyAddress"
	MsgAddressTypeExecutor           TypesMsgAddressType = "executor"
	MsgAddressTypeGroupMember        TypesMsgAddressType = "groupMember"
	MsgAddressTypeOwner              TypesMsgAddressType = "owner"
	MsgAddressTypeRelayer            TypesMsgAddressType = "relayer"
	MsgAddressTypePayee              TypesMsgAddressType = "payee"
)

List of types.MsgAddressType

func NewTypesMsgAddressTypeFromValue

func NewTypesMsgAddressTypeFromValue(v string) (*TypesMsgAddressType, error)

NewTypesMsgAddressTypeFromValue returns a pointer to a valid TypesMsgAddressType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TypesMsgAddressType) IsValid

func (v TypesMsgAddressType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TypesMsgAddressType) Ptr

Ptr returns reference to types.MsgAddressType value

func (*TypesMsgAddressType) UnmarshalJSON

func (v *TypesMsgAddressType) UnmarshalJSON(src []byte) error

type TypesMsgType

type TypesMsgType string

TypesMsgType the model 'TypesMsgType'

const (
	MsgUnknown                         TypesMsgType = "MsgUnknown"
	MsgSetWithdrawAddress              TypesMsgType = "MsgSetWithdrawAddress"
	MsgWithdrawDelegatorReward         TypesMsgType = "MsgWithdrawDelegatorReward"
	MsgWithdrawValidatorCommission     TypesMsgType = "MsgWithdrawValidatorCommission"
	MsgFundCommunityPool               TypesMsgType = "MsgFundCommunityPool"
	MsgCreateValidator                 TypesMsgType = "MsgCreateValidator"
	MsgEditValidator                   TypesMsgType = "MsgEditValidator"
	MsgDelegate                        TypesMsgType = "MsgDelegate"
	MsgBeginRedelegate                 TypesMsgType = "MsgBeginRedelegate"
	MsgUndelegate                      TypesMsgType = "MsgUndelegate"
	MsgCancelUnbondingDelegation       TypesMsgType = "MsgCancelUnbondingDelegation"
	MsgUnjail                          TypesMsgType = "MsgUnjail"
	MsgSend                            TypesMsgType = "MsgSend"
	MsgMultiSend                       TypesMsgType = "MsgMultiSend"
	MsgCreateVestingAccount            TypesMsgType = "MsgCreateVestingAccount"
	MsgCreatePermanentLockedAccount    TypesMsgType = "MsgCreatePermanentLockedAccount"
	MsgCreatePeriodicVestingAccount    TypesMsgType = "MsgCreatePeriodicVestingAccount"
	MsgPayForBlobs                     TypesMsgType = "MsgPayForBlobs"
	MsgGrant                           TypesMsgType = "MsgGrant"
	MsgExec                            TypesMsgType = "MsgExec"
	MsgRevoke                          TypesMsgType = "MsgRevoke"
	MsgGrantAllowance                  TypesMsgType = "MsgGrantAllowance"
	MsgRevokeAllowance                 TypesMsgType = "MsgRevokeAllowance"
	MsgRegisterEVMAddress              TypesMsgType = "MsgRegisterEVMAddress"
	MsgSubmitProposal                  TypesMsgType = "MsgSubmitProposal"
	MsgExecLegacyContent               TypesMsgType = "MsgExecLegacyContent"
	MsgVote                            TypesMsgType = "MsgVote"
	MsgVoteWeighted                    TypesMsgType = "MsgVoteWeighted"
	MsgDeposit                         TypesMsgType = "MsgDeposit"
	IBCTransfer                        TypesMsgType = "IBCTransfer"
	MsgVerifyInvariant                 TypesMsgType = "MsgVerifyInvariant"
	MsgSubmitEvidence                  TypesMsgType = "MsgSubmitEvidence"
	MsgSendNFT                         TypesMsgType = "MsgSendNFT"
	MsgCreateGroup                     TypesMsgType = "MsgCreateGroup"
	MsgUpdateGroupMembers              TypesMsgType = "MsgUpdateGroupMembers"
	MsgUpdateGroupAdmin                TypesMsgType = "MsgUpdateGroupAdmin"
	MsgUpdateGroupMetadata             TypesMsgType = "MsgUpdateGroupMetadata"
	MsgCreateGroupPolicy               TypesMsgType = "MsgCreateGroupPolicy"
	MsgUpdateGroupPolicyAdmin          TypesMsgType = "MsgUpdateGroupPolicyAdmin"
	MsgCreateGroupWithPolicy           TypesMsgType = "MsgCreateGroupWithPolicy"
	MsgUpdateGroupPolicyDecisionPolicy TypesMsgType = "MsgUpdateGroupPolicyDecisionPolicy"
	MsgUpdateGroupPolicyMetadata       TypesMsgType = "MsgUpdateGroupPolicyMetadata"
	MsgSubmitProposalGroup             TypesMsgType = "MsgSubmitProposalGroup"
	MsgWithdrawProposal                TypesMsgType = "MsgWithdrawProposal"
	MsgVoteGroup                       TypesMsgType = "MsgVoteGroup"
	MsgExecGroup                       TypesMsgType = "MsgExecGroup"
	MsgLeaveGroup                      TypesMsgType = "MsgLeaveGroup"
	MsgSoftwareUpgrade                 TypesMsgType = "MsgSoftwareUpgrade"
	MsgCancelUpgrade                   TypesMsgType = "MsgCancelUpgrade"
	MsgRegisterInterchainAccount       TypesMsgType = "MsgRegisterInterchainAccount"
	MsgSendTx                          TypesMsgType = "MsgSendTx"
	MsgRegisterPayee                   TypesMsgType = "MsgRegisterPayee"
	MsgRegisterCounterpartyPayee       TypesMsgType = "MsgRegisterCounterpartyPayee"
	MsgPayPacketFee                    TypesMsgType = "MsgPayPacketFee"
	MsgPayPacketFeeAsync               TypesMsgType = "MsgPayPacketFeeAsync"
	MsgTransfer                        TypesMsgType = "MsgTransfer"
	MsgCreateClient                    TypesMsgType = "MsgCreateClient"
	MsgUpdateClient                    TypesMsgType = "MsgUpdateClient"
	MsgUpgradeClient                   TypesMsgType = "MsgUpgradeClient"
	MsgSubmitMisbehaviour              TypesMsgType = "MsgSubmitMisbehaviour"
	MsgConnectionOpenInit              TypesMsgType = "MsgConnectionOpenInit"
	MsgConnectionOpenTry               TypesMsgType = "MsgConnectionOpenTry"
	MsgConnectionOpenAck               TypesMsgType = "MsgConnectionOpenAck"
	MsgConnectionOpenConfirm           TypesMsgType = "MsgConnectionOpenConfirm"
	MsgChannelOpenInit                 TypesMsgType = "MsgChannelOpenInit"
	MsgChannelOpenTry                  TypesMsgType = "MsgChannelOpenTry"
	MsgChannelOpenAck                  TypesMsgType = "MsgChannelOpenAck"
	MsgChannelOpenConfirm              TypesMsgType = "MsgChannelOpenConfirm"
	MsgChannelCloseInit                TypesMsgType = "MsgChannelCloseInit"
	MsgChannelCloseConfirm             TypesMsgType = "MsgChannelCloseConfirm"
	MsgRecvPacket                      TypesMsgType = "MsgRecvPacket"
	MsgTimeout                         TypesMsgType = "MsgTimeout"
	MsgTimeoutOnClose                  TypesMsgType = "MsgTimeoutOnClose"
	MsgAcknowledgement                 TypesMsgType = "MsgAcknowledgement"
	MsgSignalVersion                   TypesMsgType = "MsgSignalVersion"
	MsgTryUpgrade                      TypesMsgType = "MsgTryUpgrade"
)

List of types.MsgType

func NewTypesMsgTypeFromValue

func NewTypesMsgTypeFromValue(v string) (*TypesMsgType, error)

NewTypesMsgTypeFromValue returns a pointer to a valid TypesMsgType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TypesMsgType) IsValid

func (v TypesMsgType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TypesMsgType) Ptr

func (v TypesMsgType) Ptr() *TypesMsgType

Ptr returns reference to types.MsgType value

func (*TypesMsgType) UnmarshalJSON

func (v *TypesMsgType) UnmarshalJSON(src []byte) error

type ValidatorAPIService

type ValidatorAPIService service

ValidatorAPIService ValidatorAPI service

func (*ValidatorAPIService) GetValidator

GetValidator Get validator info

Get validator info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal validator id
@return ApiGetValidatorRequest

func (*ValidatorAPIService) GetValidatorBlocks

func (a *ValidatorAPIService) GetValidatorBlocks(ctx context.Context, id int32) ApiGetValidatorBlocksRequest

GetValidatorBlocks Get blocks which was proposed by validator

Get blocks which was proposed by validator

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal validator id
@return ApiGetValidatorBlocksRequest

func (*ValidatorAPIService) GetValidatorBlocksExecute

func (a *ValidatorAPIService) GetValidatorBlocksExecute(r ApiGetValidatorBlocksRequest) (*ResponsesBlock, *http.Response, error)

Execute executes the request

@return ResponsesBlock

func (*ValidatorAPIService) GetValidatorExecute

Execute executes the request

@return ResponsesValidator

func (*ValidatorAPIService) GetValidatorUptime

func (a *ValidatorAPIService) GetValidatorUptime(ctx context.Context, id int32) ApiGetValidatorUptimeRequest

GetValidatorUptime Get validator's uptime and history of signed block

Get validator's uptime and history of signed block

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal validator id
@return ApiGetValidatorUptimeRequest

func (*ValidatorAPIService) GetValidatorUptimeExecute

Execute executes the request

@return ResponsesValidatorUptime

func (*ValidatorAPIService) ListValidator

ListValidator List validators

List validators

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListValidatorRequest

func (*ValidatorAPIService) ListValidatorExecute

Execute executes the request

@return []ResponsesValidator

func (*ValidatorAPIService) ValidatorCount

ValidatorCount Get validator's count by status

Get validator's count by status

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidatorCountRequest

func (*ValidatorAPIService) ValidatorCountExecute

Execute executes the request

@return ResponsesValidatorCount

func (*ValidatorAPIService) ValidatorDelegators

func (a *ValidatorAPIService) ValidatorDelegators(ctx context.Context, id int32) ApiValidatorDelegatorsRequest

ValidatorDelegators Get validator's delegators

Get validator's delegators

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal validator id
@return ApiValidatorDelegatorsRequest

func (*ValidatorAPIService) ValidatorDelegatorsExecute

Execute executes the request

@return []ResponsesDelegation

func (*ValidatorAPIService) ValidatorJails

ValidatorJails Get validator's jails

Get validator's jails

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal validator id
@return ApiValidatorJailsRequest

func (*ValidatorAPIService) ValidatorJailsExecute

func (a *ValidatorAPIService) ValidatorJailsExecute(r ApiValidatorJailsRequest) ([]ResponsesJail, *http.Response, error)

Execute executes the request

@return []ResponsesJail

type VestingAPIService

type VestingAPIService service

VestingAPIService VestingAPI service

func (*VestingAPIService) GetVestingPeriods

func (a *VestingAPIService) GetVestingPeriods(ctx context.Context, id int32) ApiGetVestingPeriodsRequest

GetVestingPeriods Periods vesting periods by id

Periods vesting periods by id. Returns not empty array only for periodic vestings.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Internal identity
@return ApiGetVestingPeriodsRequest

func (*VestingAPIService) GetVestingPeriodsExecute

Execute executes the request

@return ResponsesVestingPeriod

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL