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

package components

type ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesStore struct {
	ReservedInBytes *int `json:"reserved_in_bytes,omitempty"`
	SizeInBytes     *int `json:"size_in_bytes,omitempty"`
}

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesStore) GetReservedInBytes() *int {
	if o == nil {
		return nil
	}
	return o.ReservedInBytes
}

func (o *ElasticSearchResultsNodeInfoClusterCombinedInfoIndicesStore) GetSizeInBytes() *int {
	if o == nil {
		return nil
	}
	return o.SizeInBytes
}
