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

package components

type OracleDescriptor struct {
	// The dot-delimited path to the parsed value from the error received when the initial handshake is refused.
	Key *string `json:"key,omitempty"`
	// The parsed value from the error received when the initial handshake is refused.
	Value *string `json:"value,omitempty"`
}

func (o *OracleDescriptor) GetKey() *string {
	if o == nil {
		return nil
	}
	return o.Key
}

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