// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type ElasticSearchResultsNodeInfoClusterCombinedInfoIndices struct {
	Count *int                                                         `json:"count,omitempty"`
	Docs  *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesDocs  `json:"docs,omitempty"`
	Store *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesStore `json:"store,omitempty"`
}

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndices) GetCount() *int {
	if o == nil {
		return nil
	}
	return o.Count
}

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndices) GetDocs() *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesDocs {
	if o == nil {
		return nil
	}
	return o.Docs
}

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndices) GetStore() *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesStore {
	if o == nil {
		return nil
	}
	return o.Store
}
