public override int GetHashCode()
    {
        int result = 17;

        result = -13 * result +
                 (CallType == null ? 0 : CallType.GetHashCode());
        result = -13 * result +
                 (Destination == null ? 0 : Destination.GetHashCode());
        return(result);
    }