in docker_images/csharp/wrapper/src/Models/DefinitionsJsoneventBody.cs [95:116]
public bool Equals(DefinitionsJsoneventBody other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return
(
Body == other.Body ||
Body != null &&
Body.Equals(other.Body)
) &&
(
HortonFlags == other.HortonFlags ||
HortonFlags != null &&
HortonFlags.Equals(other.HortonFlags)
) &&
(
Attributes == other.Attributes ||
Attributes != null &&
Attributes.Equals(other.Attributes)
);
}