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

package components

type ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesDocs struct {
	Count   *int `json:"count,omitempty"`
	Deleted *int `json:"deleted,omitempty"`
}

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

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesDocs) GetDeleted() *int {
	if o == nil {
		return nil
	}
	return o.Deleted
}
