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

package components

type FieldValuePair struct {
	// The field to match
	Field string `json:"field"`
	// The value to match
	Value string `json:"value"`
}

func (o *FieldValuePair) GetField() string {
	if o == nil {
		return ""
	}
	return o.Field
}

func (o *FieldValuePair) GetValue() string {
	if o == nil {
		return ""
	}
	return o.Value
}
