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

package components

type RouteUpdated struct {
	Diff  map[string]FieldDiff `json:"diff,omitempty"`
	Route *AutonomousSystem    `json:"route,omitempty"`
}

func (o *RouteUpdated) GetDiff() map[string]FieldDiff {
	if o == nil {
		return nil
	}
	return o.Diff
}

func (o *RouteUpdated) GetRoute() *AutonomousSystem {
	if o == nil {
		return nil
	}
	return o.Route
}
