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

package components

type PrometheusResponsePrometheusVersion struct {
	// Version of Go used to build Prometheus.
	GoVersion *string `json:"go_version,omitempty"`
	// Revision of Prometheus.
	Revision *string `json:"revision,omitempty"`
	// Version of Prometheus.
	Version *string `json:"version,omitempty"`
}

func (o *PrometheusResponsePrometheusVersion) GetGoVersion() *string {
	if o == nil {
		return nil
	}
	return o.GoVersion
}

func (o *PrometheusResponsePrometheusVersion) GetRevision() *string {
	if o == nil {
		return nil
	}
	return o.Revision
}

func (o *PrometheusResponsePrometheusVersion) GetVersion() *string {
	if o == nil {
		return nil
	}
	return o.Version
}
