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

package components

type FieldDiff struct {
	New *string `json:"new,omitempty"`
	Old *string `json:"old,omitempty"`
}

func (o *FieldDiff) GetNew() *string {
	if o == nil {
		return nil
	}
	return o.New
}

func (o *FieldDiff) GetOld() *string {
	if o == nil {
		return nil
	}
	return o.Old
}
