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

package components

type PrometheusResponseDroppedTarget struct {
	// Address of target.
	Address *string `json:"address,omitempty"`
	// Job of target.
	Job *string `json:"job,omitempty"`
	// Path to metrics of target.
	MetricsPath *string `json:"metrics_path,omitempty"`
	// URL scheme.
	Scheme *string `json:"scheme,omitempty"`
}

func (o *PrometheusResponseDroppedTarget) GetAddress() *string {
	if o == nil {
		return nil
	}
	return o.Address
}

func (o *PrometheusResponseDroppedTarget) GetJob() *string {
	if o == nil {
		return nil
	}
	return o.Job
}

func (o *PrometheusResponseDroppedTarget) GetMetricsPath() *string {
	if o == nil {
		return nil
	}
	return o.MetricsPath
}

func (o *PrometheusResponseDroppedTarget) GetScheme() *string {
	if o == nil {
		return nil
	}
	return o.Scheme
}
