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

package components

type PrometheusResponseActiveTargetLabels struct {
	// Instance after relabelling has occurred.
	Instance *string `json:"instance,omitempty"`
	// Job of target after relabelling has occurred.
	Job *string `json:"job,omitempty"`
}

func (o *PrometheusResponseActiveTargetLabels) GetInstance() *string {
	if o == nil {
		return nil
	}
	return o.Instance
}

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